From: Jim Blandy Date: Mon, 24 May 1993 15:57:15 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: 3.70.2~268 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8960f971ca7cc9866fd7f99e9c573e42f13f3431;p=platform%2Fupstream%2Fmake.git *** empty log message *** --- diff --git a/alloca.c b/alloca.c index bc34529..30efa5a 100644 --- a/alloca.c +++ b/alloca.c @@ -60,6 +60,17 @@ typedef char *pointer; #define NULL 0 +/* Different portions of Emacs need to call different versions of + malloc. The Emacs executable needs alloca to call xmalloc, because + ordinary malloc isn't protected from input signals. On the other + hand, the utilities in lib-src need alloca to call malloc; some of + them are very simple, and don't have an xmalloc routine. + + Everybody else should just call malloc. */ +#ifndef emacs +extern pointer malloc (); +#endif + /* Define STACK_DIRECTION if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time.