Module: wine Branch: master Commit: df51cf5c8316802e67c5c9a408bdc10c8d08c37a URL: http://source.winehq.org/git/wine.git/?a=commit;h=df51cf5c8316802e67c5c9a408...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Nov 9 09:18:43 2006 +0100
ntdll: Re-add sys/ioctl.h that got lost in the PeekNamedPipe move.
---
dlls/ntdll/file.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index 5d397cc..4e646cb 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -42,6 +42,9 @@ #endif #ifdef HAVE_SYS_TIME_H # include <sys/time.h> #endif +#ifdef HAVE_SYS_IOCTL_H +#include <sys/ioctl.h> +#endif #ifdef HAVE_POLL_H #include <poll.h> #endif