diff options
Diffstat (limited to 'src/w32-glib-io.c')
-rw-r--r-- | src/w32-glib-io.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/w32-glib-io.c b/src/w32-glib-io.c index ff21c3d8..6b7cd150 100644 --- a/src/w32-glib-io.c +++ b/src/w32-glib-io.c @@ -28,8 +28,12 @@ #include <assert.h> #include <errno.h> #include <fcntl.h> -#include <unistd.h> -#include <sys/time.h> +#ifdef HAVE_UNISTD_H +# include <unistd.h> +#endif +#ifdef HAVE_SYS_TIME_H +# include <sys/time.h> +#endif #include <sys/types.h> #include <glib.h> #include <windows.h> |