1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-13 08:25:28 +00:00

Fixed definition of NULL

git-svn-id: svn://svn.cc65.org/cc65/trunk@3462 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-04-17 20:09:28 +00:00
parent 19e2d56016
commit e319900fdb

View File

@@ -6,7 +6,7 @@
/* */ /* */
/* */ /* */
/* */ /* */
/* (C) 1998-2003 Ullrich von Bassewitz */ /* (C) 1998-2005 Ullrich von Bassewitz */
/* R<>merstrasse 52 */ /* R<>merstrasse 52 */
/* D-70794 Filderstadt */ /* D-70794 Filderstadt */
/* EMail: uz@cc65.org */ /* EMail: uz@cc65.org */
@@ -39,10 +39,10 @@
/* NULL pointer */ /* NULL pointer */
#ifdef NULL #ifndef _HAVE_NULL
# undef NULL
#endif
#define NULL 0 #define NULL 0
#define _HAVE_NULL
#endif
/* Locale information constants */ /* Locale information constants */
#define LC_ALL 0 #define LC_ALL 0