aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-14 18:00:36 +0000
committerGerd Moellmann2000-07-14 18:00:36 +0000
commitc87a7e0f2ca8ff4a14e4fc503ae42016d81bd9c3 (patch)
tree2e8d1497be4da3de4ce8b70205d73d7e3721dd31
parentc43a1ff693eb7d968bb35edfb189f6689d352c47 (diff)
downloademacs-c87a7e0f2ca8ff4a14e4fc503ae42016d81bd9c3.tar.gz
emacs-c87a7e0f2ca8ff4a14e4fc503ae42016d81bd9c3.zip
(malloc) [emacs]: Define as xmalloc.
-rw-r--r--src/alloca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloca.c b/src/alloca.c
index 1f760fe6173..18d766c4cc5 100644
--- a/src/alloca.c
+++ b/src/alloca.c
@@ -88,7 +88,7 @@ typedef char *pointer;
88 88
89 Callers below should use malloc. */ 89 Callers below should use malloc. */
90 90
91#ifndef emacs 91#ifdef emacs
92#define malloc xmalloc 92#define malloc xmalloc
93#endif 93#endif
94extern pointer malloc (); 94extern pointer malloc ();