aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-18 13:02:40 +0000
committerGerd Moellmann2000-07-18 13:02:40 +0000
commit99d5dc1271e4e1e5db659f19d4e075c0245843eb (patch)
tree81602d246a99d50eb12213381047a4f5a553ac63
parent00edcd1d2304102c70c3223fc6563d0caa8f6640 (diff)
downloademacs-99d5dc1271e4e1e5db659f19d4e075c0245843eb.tar.gz
emacs-99d5dc1271e4e1e5db659f19d4e075c0245843eb.zip
(free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
-rw-r--r--src/alloca.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alloca.c b/src/alloca.c
index 18d766c4cc5..087e990ab1e 100644
--- a/src/alloca.c
+++ b/src/alloca.c
@@ -90,6 +90,9 @@ typedef char *pointer;
90 90
91#ifdef emacs 91#ifdef emacs
92#define malloc xmalloc 92#define malloc xmalloc
93#ifdef EMACS_FREE
94#define free EMACS_FREE
95#endif
93#endif 96#endif
94extern pointer malloc (); 97extern pointer malloc ();
95 98