server: Add missing includes of poll.h.

oldstable
Felix Janda 2014-06-01 11:00:29 +02:00 committed by Alexandre Julliard
parent 9ab1cfb5e0
commit e3faab267c
3 changed files with 9 additions and 0 deletions

View File

@ -32,6 +32,9 @@
#include <limits.h>
#include <dirent.h>
#include <errno.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS

View File

@ -25,6 +25,9 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS

View File

@ -30,6 +30,9 @@
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H