random.c (NULL): Don't redefine NULL if it is already defined.

1998-12-30  Michael Meissner  <meissner@cygnus.com>
        * random.c (NULL): Don't redefine NULL if it is already defined.

From-SVN: r24659
This commit is contained in:
Michael Meissner 1999-01-13 21:38:14 +00:00 committed by Jeff Law
parent 58a2f534ee
commit fb9939b8f8
2 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,10 @@ Wed Jan 13 14:16:36 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* xstrdup.c (xstrdup): Switch from strcpy to memcpy for speed.
1998-12-30 Michael Meissner <meissner@cygnus.com>
* random.c (NULL): Don't redefine NULL if it is already defined.
Tue Dec 22 09:43:35 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* argv.c (buildargv): Cast the result of alloca in assignment.

View File

@ -37,10 +37,14 @@
#ifdef __STDC__
# define PTR void *
# define NULL (void *) 0
# ifndef NULL
# define NULL (void *) 0
# endif
#else
# define PTR char *
# define NULL 0
# ifndef NULL
# define NULL (void *) 0
# endif
#endif
#endif