summaryrefslogtreecommitdiff
path: root/src/sig_handler.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-10-07 11:37:35 +0000
committerChristian Pointner <equinox@spreadspace.org>2013-10-07 11:37:35 +0000
commit0b635145d3a16f4e6bb4182956917a320afc1bd7 (patch)
tree83a56b7225f564a1a6d3c3a12a7f4dab3505ceff /src/sig_handler.c
parentconfigure 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.c4
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];