aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-06-01 11:39:59 +0000
committerswhite <swhite@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-06-01 11:39:59 +0000
commitef8c0f40a254dfd7f8f90a0987cf216cdc4a5abb (patch)
treeb3b080d79ecbf0cc5bf6f12793c5a43725530483
parent2d5a751508e185bfa7083c78fc38b6fc25e9ab54 (diff)
Pursuant to bug 1715
Made to compile more cleanly with Intel 7 git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@208 1faa4e14-9dd3-4be0-9f0e-ffe519881164
-rw-r--r--src/Expression.c1
-rw-r--r--src/SString.c2
-rw-r--r--src/Sockets.c3
-rw-r--r--src/Steer.c1
-rw-r--r--src/base64.c1
5 files changed, 7 insertions, 1 deletions
diff --git a/src/Expression.c b/src/Expression.c
index 82b2e30..dd84a5f 100644
--- a/src/Expression.c
+++ b/src/Expression.c
@@ -13,6 +13,7 @@
#endif
#include <string.h>
+#include <stdlib.h>
#include "Expression.h"
diff --git a/src/SString.c b/src/SString.c
index 0a5963e..2323fbd 100644
--- a/src/SString.c
+++ b/src/SString.c
@@ -544,7 +544,7 @@ StringConcatDouble( String * s, double d )
Util_snprintf( buf, sizeof( buf ), "%f", d );
return StringConcatCString( s, buf );
}
-/*a
+/*
*
* 0) It's inappropritate to handle string and character convesions.
* And there are some very specific-use conversions, such as 't'
diff --git a/src/Sockets.c b/src/Sockets.c
index 7857df2..8ec9f46 100644
--- a/src/Sockets.c
+++ b/src/Sockets.c
@@ -17,7 +17,10 @@
#include <stdlib.h>
#include <string.h>
+
+#ifdef HAVE_SIGNAL_H
#include <signal.h>
+#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
diff --git a/src/Steer.c b/src/Steer.c
index e474325..c39960a 100644
--- a/src/Steer.c
+++ b/src/Steer.c
@@ -18,6 +18,7 @@
#endif
#include <string.h>
+#include <stdlib.h>
#ifdef CCTK_MPI
#include "mpi.h"
diff --git a/src/base64.c b/src/base64.c
index bd09102..87fb19e 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -57,6 +57,7 @@
#include <ctype.h>
#include <string.h>
+#include <assert.h>
#define Assert(Cond) if (!(Cond)) abort()