Update of /cvsroot/foo/foo/libfoo/FOO
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19743
Modified Files:
FOOObject.h
Log Message:
added (void *) cast to NULL definition
Index: FOOObject.h
===================================================================
RCS file: /cvsroot/foo/foo/libfoo/FOO/FOOObject.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FOOObject.h 4 Aug 2004 05:15:48 -0000 1.1
--- FOOObject.h 6 Aug 2004 00:14:45 -0000 1.2
***************
*** 65,69 ****
/* more tedious stuff for mac os x */
#ifndef NULL
! #define NULL (0) /* haha */
#endif
/* end: more tedious stuff for mac os x */
--- 65,69 ----
/* more tedious stuff for mac os x */
#ifndef NULL
! #define NULL ((void *)0) /* haha */
#endif
/* end: more tedious stuff for mac os x */
|