diff options
| author | Jim Meyering <jim@meyering.net> | 2001-02-16 19:28:43 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2001-02-16 19:28:43 +0000 |
| commit | 9cdff964265087265fc455a1c8fbcf507fcd757e (patch) | |
| tree | 646dbcf7a520dab19e50adc2ddc190b03e8984ce | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-9cdff964265087265fc455a1c8fbcf507fcd757e.tar.gz coreutils-9cdff964265087265fc455a1c8fbcf507fcd757e.zip | |
(malloc): Undef before defining, since stdlib.h may have defined it.
| -rw-r--r-- | lib/alloca.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/alloca.c b/lib/alloca.c index 55a80677f..836c50319 100644 --- a/lib/alloca.c +++ b/lib/alloca.c @@ -88,6 +88,7 @@ typedef char *pointer; Callers below should use malloc. */ # ifndef emacs +# undef malloc # define malloc xmalloc # endif extern pointer malloc (); |
