dinput: Include fcntl.h instead of sys/fcntl.h since they are equivalent and the former is more portable.

This commit is contained in:
Rob Shearman 2008-02-27 19:02:45 +00:00 committed by Alexandre Julliard
parent 97a9ca3f4a
commit 376be08a7c
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#include <sys/fcntl.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif

View File

@ -34,7 +34,7 @@
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#include <sys/fcntl.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif