aboutsummaryrefslogtreecommitdiffstats
path: root/sircbot.c
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-09-08 08:07:08 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2014-09-08 08:07:08 +0200
commit7e29992497f891666d9eaa25a1b80544b8e5efa5 (patch)
tree51eacbb0bd24f2d0bd86627f2accc119f6d01f04 /sircbot.c
parentf9dc09f20067810d81f2b9e825c9685f54f5c651 (diff)
downloadsircbot-7e29992497f891666d9eaa25a1b80544b8e5efa5.tar.bz2
sircbot-7e29992497f891666d9eaa25a1b80544b8e5efa5.tar.xz
fix compile warning about header include of sys/poll.h
Diffstat (limited to 'sircbot.c')
-rw-r--r--sircbot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sircbot.c b/sircbot.c
index 1f3f5cc..ebe2d34 100644
--- a/sircbot.c
+++ b/sircbot.c
@@ -6,13 +6,13 @@ Intended usage is git hook that sends commits, etc.
#define _GNU_SOURCE
-#include <sys/poll.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
+#include <poll.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>