From f868928c4b073b71b29ae044f3e2fc4b12f9ad3e Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 8 Jan 2014 14:57:10 +0100 Subject: [PATCH] fix incorrect poll.h inclusion sys/poll.h is a glibc legacy alias for poll.h. the latter is specified by POSIX, the former not. on glibc one of them just includes the other so it doesnt hurt. --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 23979df..f307d8e 100644 --- a/src/core.c +++ b/src/core.c @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include #include