diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-04-23 00:21:23 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-04-23 00:21:23 +0000 |
commit | df0617f28978f809a93bbaf1efc24372a2d8d39f (patch) | |
tree | 11080bb9e01e3e47da319c4be41e425704cf5927 /test/regress_zlib.c | |
parent | 8b7a3b3676375d145e0b89d3f3d9194c7031a760 (diff) | |
download | libevent-df0617f28978f809a93bbaf1efc24372a2d8d39f.tar.gz |
Use signal.h, not sys/signal.h.
This is patch 2673214 from mmadia. It is correct, since we unconditionally
include signal.h in many other places, and only sometimes include sys/signal.h.
It is necessary to compile on Haiku, I'm told.
svn:r1228
Diffstat (limited to 'test/regress_zlib.c')
-rw-r--r-- | test/regress_zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress_zlib.c b/test/regress_zlib.c index 6e6ce504..3f356fe1 100644 --- a/test/regress_zlib.c +++ b/test/regress_zlib.c @@ -37,10 +37,10 @@ #ifndef WIN32 #include <sys/socket.h> #include <sys/wait.h> -#include <sys/signal.h> #include <unistd.h> #include <netdb.h> #endif +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |