From: Richard M. Stallman Date: Tue, 25 May 1993 00:43:37 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: 3.70.2~263 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60c868c193d28baf52cc088ec32d98b436b76227;p=platform%2Fupstream%2Fmake.git *** empty log message *** --- diff --git a/alloca.c b/alloca.c index 30efa5a..c04c0ef 100644 --- a/alloca.c +++ b/alloca.c @@ -66,9 +66,13 @@ typedef char *pointer; 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. */ + Non-Emacs programs expect this to call use xmalloc. + + Callers below should use malloc. */ + #ifndef emacs -extern pointer malloc (); +#define malloc xmalloc +extern pointer xmalloc (); #endif /* Define STACK_DIRECTION if you know the direction of stack