diff options
author | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-09-21 16:16:47 +0200 |
---|---|---|
committer | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-09-21 16:16:47 +0200 |
commit | 3030dada14e0ccbe9d2e7ce3b6fd109872d13c49 (patch) | |
tree | b2182bc5bf9d1ea0e2a2574f9040dcd7a2222bf3 /SCM | |
parent | 27bd24db0e5422abd4e4b702aa0faead4c988c4e (diff) |
Fix compilation on Mac OS X 10.5.
Diffstat (limited to 'SCM')
-rw-r--r-- | SCM/continue.h | 5 |
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 */ |