| commit | 09fefeed7ac2cb7c99564c1c6a693c82912ce687 | [log] [tgz] |
|---|---|---|
| author | Jon Griffiths <jon_p_griffiths@yahoo.com> | Tue Sep 23 22:54:57 2003 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Sep 23 22:54:57 2003 +0000 |
| tree | a6d0cd01426a61cb550ea3098c9d0ffb452b9d43 | |
| parent | 33c069ae30ad76384c2e173d3d3f9bbc54354af4 [diff] [blame] |
Not everyone has <unistd.h>, some files need <io.h> too (msvc).
diff --git a/programs/wineconsole/curses.c b/programs/wineconsole/curses.c index 0f32d93..a5c3acd 100644 --- a/programs/wineconsole/curses.c +++ b/programs/wineconsole/curses.c
@@ -42,7 +42,9 @@ #include <ncurses.h> #endif #undef KEY_EVENT /* avoid redefinition warning */ +#ifdef HAVE_UNISTD_H #include <unistd.h> +#endif #include <windef.h> #include <winbase.h> #include <winnls.h>