Use proper ifdefs around unistd.h.

This commit is contained in:
Vincent Béron 2005-09-09 09:11:10 +00:00 committed by Alexandre Julliard
parent 25cb6e081f
commit a3e3b1e360
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@
# include <linux/input.h>
#endif
#include <errno.h>
#include <unistd.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <math.h>
#include "wine/debug.h"
#include "wine/unicode.h"