diff options
author | Michael Meissner <meissner@cygnus.com> | 1999-01-13 21:38:14 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-13 14:38:14 -0700 |
commit | fb9939b8f815bdcbe930d375f30e6fed8b29c5ce (patch) | |
tree | 7ad3358cbdf418b72868602b67f1871ccd856af4 /libiberty/random.c | |
parent | 58a2f534eedcf29002ac2f5f643f9573b63eeb0b (diff) | |
download | gcc-fb9939b8f815bdcbe930d375f30e6fed8b29c5ce.tar.gz |
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
Diffstat (limited to 'libiberty/random.c')
-rw-r--r-- | libiberty/random.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/random.c b/libiberty/random.c index e205719832b..0a950709fce 100644 --- a/libiberty/random.c +++ b/libiberty/random.c @@ -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 |