[Plib-cvs] plib/src/util ul.h,1.51,1.52
Brought to you by:
sjbaker
|
From: Sebastian U. <ud...@us...> - 2002-09-01 08:10:10
|
Update of /cvsroot/plib/plib/src/util In directory usw-pr-cvs1:/tmp/cvs-serv18657 Modified Files: ul.h Log Message: If everything went okay, there is no longer a need to explicitly define WIN32 Index: ul.h =================================================================== RCS file: /cvsroot/plib/plib/src/util/ul.h,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- ul.h 1 Sep 2002 02:43:05 -0000 1.51 +++ ul.h 1 Sep 2002 08:10:06 -0000 1.52 @@ -44,11 +44,13 @@ #include <ctype.h> #include <assert.h> -#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32) +#if !defined(WIN32) && (defined(_WIN32) || defined(__WIN32__) || \ + defined(__CYGWIN__) || defined(_MSC_VER)) # define WIN32 #endif #if defined (WIN32) +a # include <windows.h> # ifdef __CYGWIN__ # include <unistd.h> |