Commit e3faab26 authored by Felix Janda's avatar Felix Janda Committed by Alexandre Julliard

server: Add missing includes of poll.h.

parent 9ab1cfb5
...@@ -32,6 +32,9 @@ ...@@ -32,6 +32,9 @@
#include <limits.h> #include <limits.h>
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include "ntstatus.h" #include "ntstatus.h"
#define WIN32_NO_STATUS #define WIN32_NO_STATUS
......
...@@ -25,6 +25,9 @@ ...@@ -25,6 +25,9 @@
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include "ntstatus.h" #include "ntstatus.h"
#define WIN32_NO_STATUS #define WIN32_NO_STATUS
......
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include <sys/time.h> #include <sys/time.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment