summaryrefslogtreecommitdiff
path: root/src/fdevent_linux_sysepoll.c
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2011-12-25 15:35:01 +0000
committerStefan Bühler <stbuehler@web.de>2011-12-25 15:35:01 +0000
commit79bcfab083d8437aff5d03df10fd1e1d5b79ffc7 (patch)
tree5d5c599a440b149861c91a695e0caaf685c74a60 /src/fdevent_linux_sysepoll.c
parentd194c09da94e310a3ca6659367ffe468303135d5 (diff)
downloadlighttpd-git-79bcfab083d8437aff5d03df10fd1e1d5b79ffc7.tar.gz
Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2823 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/fdevent_linux_sysepoll.c')
-rw-r--r--src/fdevent_linux_sysepoll.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fdevent_linux_sysepoll.c b/src/fdevent_linux_sysepoll.c
index b311f453..f761ed66 100644
--- a/src/fdevent_linux_sysepoll.c
+++ b/src/fdevent_linux_sysepoll.c
@@ -13,6 +13,9 @@
#include <fcntl.h>
#ifdef USE_LINUX_EPOLL
+
+# include <sys/epoll.h>
+
static void fdevent_linux_sysepoll_free(fdevents *ev) {
close(ev->epoll_fd);
free(ev->epoll_events);