diff options
author | Roland McGrath <roland@redhat.com> | 1996-03-20 01:08:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-03-20 01:08:11 +0000 |
commit | 46a1497b8ee48c13be1aa46ddd525c315ebc0cbf (patch) | |
tree | f5861d5995ced05644c11d7d95ac11e2f91bc288 | |
parent | 4603f9f8c61ecbc12e83e4d0721e4414a30f1f4b (diff) | |
download | gunmake-46a1497b8ee48c13be1aa46ddd525c315ebc0cbf.tar.gz |
(NULL): Define only if not already defined.
-rw-r--r-- | alloca.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -73,7 +73,9 @@ typedef void *pointer; typedef char *pointer; #endif +#ifndef NULL #define NULL 0 +#endif /* Different portions of Emacs need to call different versions of malloc. The Emacs executable needs alloca to call xmalloc, because |