author | Michael Krelin @devel <hacker@klever.net> | 2009-03-11 20:05:54 (UTC) |
---|---|---|
committer | Michael Krelin @devel <hacker@klever.net> | 2009-03-11 20:05:54 (UTC) |
commit | f1eed2b661d43b7e39e1aea16d9453a538206564 (patch) (side-by-side diff) | |
tree | 7f340d0294baecd1e8719026f16b71000ca4712d | |
parent | f4db51309c0333434d9ee96bc52593dacab04c69 (diff) | |
download | kingate-f1eed2b661d43b7e39e1aea16d9453a538206564.zip kingate-f1eed2b661d43b7e39e1aea16d9453a538206564.tar.gz kingate-f1eed2b661d43b7e39e1aea16d9453a538206564.tar.bz2 |
missing headers for gcc 4.3
-rw-r--r-- | src/fastcgi.cc | 1 | ||||
-rw-r--r-- | src/plaincgi.cc | 1 | ||||
-rw-r--r-- | src/util.cc | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/fastcgi.cc b/src/fastcgi.cc index 63b59f8..641ae46 100644 --- a/src/fastcgi.cc +++ b/src/fastcgi.cc @@ -1,6 +1,7 @@ #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> +#include <cstring> #include <fastcgi.h> #include "kingate/fastcgi.h" #include "kingate/exception.h" diff --git a/src/plaincgi.cc b/src/plaincgi.cc index 1cb7dc6..3a82d33 100644 --- a/src/plaincgi.cc +++ b/src/plaincgi.cc @@ -1,6 +1,7 @@ #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> +#include <cstring> #include "kingate/plaincgi.h" #include "kingate/exception.h" #include "config.h" diff --git a/src/util.cc b/src/util.cc index 48e486a..82a4a0a 100644 --- a/src/util.cc +++ b/src/util.cc @@ -1,3 +1,5 @@ +#include <cstdlib> +#include <cstring> #include "kingate/util.h" #include "kingate/exception.h" |