aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-07 20:54:23 +0000
committerschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-07 20:54:23 +0000
commit20276b40851729cd9fdf669e4634adc668e8d6e4 (patch)
tree589632bd9595b3823cfe63a153ee6531ce327b73
parent1eb98693ddf874f97953aaf17ce933f34a6f0ead (diff)
Include standard header files to declare string and stdlib prototypes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@201 1faa4e14-9dd3-4be0-9f0e-ffe519881164
-rw-r--r--src/Authorisation.c1
-rw-r--r--src/Content.c1
-rw-r--r--src/Groups.c2
-rw-r--r--src/Redirect.c3
4 files changed, 7 insertions, 0 deletions
diff --git a/src/Authorisation.c b/src/Authorisation.c
index 4a91759..571118e 100644
--- a/src/Authorisation.c
+++ b/src/Authorisation.c
@@ -10,6 +10,7 @@
#include "cctk.h"
+#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
diff --git a/src/Content.c b/src/Content.c
index 2aaf2d1..1e0c647 100644
--- a/src/Content.c
+++ b/src/Content.c
@@ -14,6 +14,7 @@
#include "cctk.h"
#include <stdlib.h>
+#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
diff --git a/src/Groups.c b/src/Groups.c
index 42b88f0..5ee0453 100644
--- a/src/Groups.c
+++ b/src/Groups.c
@@ -8,6 +8,8 @@
@version $Header$
@@*/
+#include <stdlib.h>
+
#include "cctk.h"
#include "httpRequest.h"
diff --git a/src/Redirect.c b/src/Redirect.c
index 79d2bb9..d9db82f 100644
--- a/src/Redirect.c
+++ b/src/Redirect.c
@@ -8,6 +8,9 @@
@version $Id$
@@*/
+#include <stdlib.h>
+#include <string.h>
+
#include "cctk.h"
#ifdef CCTK_MPI