diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:52:25 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:52:25 +0000 |
commit | 9b90309501502cd0875f32bbf20db1e257c8978c (patch) | |
tree | 91514ef2b3cb475cd0ac6cfc8553905aa4cb9b35 | |
parent | b49ed9c97fcdd868bd7dbbe6a50d1cadb927d4b1 (diff) | |
download | guile-9b90309501502cd0875f32bbf20db1e257c8978c.tar.gz |
* alloca.c: #include <config.h> if HAVE_CONFIG_H.
-rw-r--r-- | libguile/alloca.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/alloca.c b/libguile/alloca.c index 4e09fd205..a42ae80a3 100644 --- a/libguile/alloca.c +++ b/libguile/alloca.c @@ -21,10 +21,11 @@ allocating any. It is a good idea to use alloca(0) in your main control loop, etc. to force garbage collection. */ +#if HAVE_CONFIG_H +# include <config.h> +#endif -#ifdef HAVE_CONFIG_H #include "libguile/scmconfig.h" -#endif #ifdef HAVE_STRING_H #include <string.h> |