On January 9, 2003 02:24 pm, Alexandre Julliard wrote: > Yes, that's probably safer, and it shouldn't break anything. True. Is this one OK: ChangeLog Add a unistd.h file for mingw/Unix compatibility. Index: include/Makefile.in =================================================================== RCS file: /var/cvs/wine/include/Makefile.in,v retrieving revision 1.79 diff -u -r1.79 Makefile.in --- include/Makefile.in 9 Jan 2003 01:09:16 -0000 1.79 +++ include/Makefile.in 9 Jan 2003 19:20:02 -0000 @@ -194,8 +194,10 @@ msvcrt/sys/stat.h \ msvcrt/sys/timeb.h \ msvcrt/sys/types.h \ + msvcrt/sys/unistd.h \ msvcrt/sys/utime.h \ msvcrt/time.h \ + msvcrt/unistd.h \ msvcrt/wchar.h \ msvcrt/wctype.h --- /dev/null 2002-08-30 19:31:37.000000000 -0400 +++ include/msvcrt/unistd.h 2003-01-09 12:18:20.000000000 -0500 @@ -0,0 +1,2 @@ +#include <io.h> +#include <process.h> --- /dev/null 2002-08-30 19:31:37.000000000 -0400 +++ include/msvcrt/sys/unistd.h 2003-01-09 14:20:20.000000000 -0500 @@ -0,0 +1 @@ +#include <unistd.h> -- Dimi.