mirror of
https://github.com/mirror/make.git
synced 2025-01-01 07:50:52 +08:00
*** empty log message ***
This commit is contained in:
parent
1e71bdd085
commit
60c868c193
8
alloca.c
8
alloca.c
@ -66,9 +66,13 @@ typedef char *pointer;
|
|||||||
hand, the utilities in lib-src need alloca to call malloc; some of
|
hand, the utilities in lib-src need alloca to call malloc; some of
|
||||||
them are very simple, and don't have an xmalloc routine.
|
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
|
#ifndef emacs
|
||||||
extern pointer malloc ();
|
#define malloc xmalloc
|
||||||
|
extern pointer xmalloc ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Define STACK_DIRECTION if you know the direction of stack
|
/* Define STACK_DIRECTION if you know the direction of stack
|
||||||
|
Loading…
Reference in New Issue
Block a user