diff options
author | Baruch Sterin <baruchs@gmail.com> | 2011-02-01 15:54:01 -0800 |
---|---|---|
committer | Baruch Sterin <baruchs@gmail.com> | 2011-02-01 15:54:01 -0800 |
commit | 3a41da37a28535aed93abc3b91130539624fb3ca (patch) | |
tree | dd1f784c715495b8b825ea4666ea42ed81c3efc7 | |
parent | b538a5fad096764a686a68f843f74ee36d3c7ef1 (diff) | |
download | abc-3a41da37a28535aed93abc3b91130539624fb3ca.tar.gz abc-3a41da37a28535aed93abc3b91130539624fb3ca.tar.bz2 abc-3a41da37a28535aed93abc3b91130539624fb3ca.zip |
src/misc/util/utilSignal.c
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/misc/util/utilSignal.c | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -37,7 +37,7 @@ default: $(PROG) #OPTFLAGS := -DNDEBUG -O3 -DLIN #OPTFLAGS := -DNDEBUG -O3 -DLIN64 #OPTFLAGS := -g -O -DLIN -m32 -OPTFLAGS := -g -O -DLIN64 -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -DSIZEOF_INT=4 -DABC_NAMESPACE=xxx +OPTFLAGS := -g -O -DLIN64 -DSIZEOF_VOID_P=8 -DSIZEOF_LONG=8 -DSIZEOF_INT=4 -DABC_NAMESPACE=xxx -fPIC CFLAGS += -Wall -Wno-unused-function $(OPTFLAGS) $(patsubst %, -I%, $(MODULES)) CXXFLAGS += $(CFLAGS) diff --git a/src/misc/util/utilSignal.c b/src/misc/util/utilSignal.c index 698ba6d6..2b2d538c 100644 --- a/src/misc/util/utilSignal.c +++ b/src/misc/util/utilSignal.c @@ -26,7 +26,8 @@ #include <signal.h> #include <hashGen.h> #include <errno.h> -#include <pthread.h> +#include <sys/types.h> +#include <sys/wait.h> #include "abc_global.h" |