2003-03-16 Casper S. Hornstrup <chorns@users.sourceforge.net>

* include/ntos/types.h (FALSE): Protect with #ifndef FALSE.
	(TRUE): Protect with #ifndef TRUE.

svn path=/trunk/; revision=4311
This commit is contained in:
Casper Hornstrup 2003-03-16 12:45:03 +00:00
parent a9d3504875
commit 09e4426af3
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-03-16 Casper S. Hornstrup <chorns@users.sourceforge.net>
* include/ntos/types.h (FALSE): Protect with #ifndef FALSE.
(TRUE): Protect with #ifndef TRUE.
2003-03-16 Casper S. Hornstrup <chorns@users.sourceforge.net> 2003-03-16 Casper S. Hornstrup <chorns@users.sourceforge.net>
* include/napi/i386/segment.h (put_user, get_user, * include/napi/i386/segment.h (put_user, get_user,

View file

@ -231,8 +231,12 @@ typedef unsigned short *PRTL_ATOM;
#endif /* __USE_W32API */ #endif /* __USE_W32API */
#ifndef FALSE
#define FALSE 0 #define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1 #define TRUE 1
#endif
#ifndef NULL #ifndef NULL
#ifdef __cplusplus #ifdef __cplusplus