commit | d016f819f171d1ef07d4033e70dd7819c719a84f | [log] [tgz] |
---|---|---|
author | Patrik Stridvall <ps@leissner.se> | Sat Aug 17 00:43:16 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Aug 17 00:43:16 2002 +0000 |
tree | 3fde130f03d05827c64aa84acd1c1cdbc4eb0817 | |
parent | 368fab14325d901aed01f094bcb0b67ed796e57b [diff] [blame] |
Added include protection for unistd.h and sys/time.h.
diff --git a/windows/winhelp.c b/windows/winhelp.c index e6123dd..0c46dfb 100644 --- a/windows/winhelp.c +++ b/windows/winhelp.c
@@ -18,10 +18,14 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "config.h" + #include <stdlib.h> #include <stdio.h> #include <string.h> -#include <unistd.h> +#ifdef HAVE_UNISTD_H +# include <unistd.h> +#endif #include "wine/debug.h" #include "windef.h" #include "wingdi.h"