diff options
author | Christian Pointner <equinox@spreadspace.org> | 2013-10-07 11:37:35 +0000 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2013-10-07 11:37:35 +0000 |
commit | 0b635145d3a16f4e6bb4182956917a320afc1bd7 (patch) | |
tree | 83a56b7225f564a1a6d3c3a12a7f4dab3505ceff /src/sig_handler.c | |
parent | configure cleanup (diff) |
fixed build with -Wall
added build support for clang
git-svn-id: https://svn.spreadspace.org/tcpproxy/trunk@67 e61f0598-a718-4e21-a8f0-0aadfa62ad6b
Diffstat (limited to 'src/sig_handler.c')
-rw-r--r-- | src/sig_handler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sig_handler.c b/src/sig_handler.c index cc385cb..9ee05c4 100644 --- a/src/sig_handler.c +++ b/src/sig_handler.c @@ -28,13 +28,13 @@ #include "datatypes.h" #include "log.h" - #include "sig_handler.h" -#include <errno.h> #include <signal.h> #include <unistd.h> #include <fcntl.h> +#include <errno.h> +#include <string.h> static int sig_pipe_fds[2]; |