summaryrefslogtreecommitdiff
path: root/SCM
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-09-21 16:16:47 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-09-21 16:16:47 +0200
commit3030dada14e0ccbe9d2e7ce3b6fd109872d13c49 (patch)
treeb2182bc5bf9d1ea0e2a2574f9040dcd7a2222bf3 /SCM
parent27bd24db0e5422abd4e4b702aa0faead4c988c4e (diff)
Fix compilation on Mac OS X 10.5.
Diffstat (limited to 'SCM')
-rw-r--r--SCM/continue.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/SCM/continue.h b/SCM/continue.h
index 2acb368..d901e01 100644
--- a/SCM/continue.h
+++ b/SCM/continue.h
@@ -18,7 +18,10 @@
/* "continue.h" Scheme Continuations for C.
Author: Aubrey Jaffer. */
-#define STDC_HEADERS
+#ifndef STDC_HEADERS
+#define STDC_HEADERS 1
+#endif
+
#include <stdlib.h>
/* If stack is not longword aligned then */