diff options
author | Camm Maguire <camm@debian.org> | 2014-04-15 20:33:35 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014-04-21 15:00:40 +0000 |
commit | 329e5c7ce82e7e047ca25922260219821cfb16ec (patch) | |
tree | 9cdfdcae1ddce5ef04117e167351e710ea477a31 | |
parent | 0f28541accd11d2155e99f7ce6fcac679dfe15b5 (diff) | |
download | gcl-329e5c7ce82e7e047ca25922260219821cfb16ec.tar.gz |
signal.h move in alloc.c
-rw-r--r-- | gcl/o/alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcl/o/alloc.c b/gcl/o/alloc.c index 968e032c..daf3aedf 100644 --- a/gcl/o/alloc.c +++ b/gcl/o/alloc.c @@ -976,6 +976,8 @@ static void init_textpage() { object malloc_list=Cnil; +#include <signal.h> + void gcl_init_alloc(void *cs_start) { @@ -1039,7 +1041,6 @@ gcl_init_alloc(void *cs_start) { SETUP_SIG_STACK #else #if defined(HAVE_SIGACTION) || defined(HAVE_SIGVEC) -#include <signal.h> { /* make sure the stack is 8 byte aligned */ static double estack_buf[32*SIGSTKSZ]; |