mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-04 19:12:50 +00:00
*** empty log message ***
This commit is contained in:
parent
ff71fe9277
commit
8960f971ca
1 changed files with 11 additions and 0 deletions
11
alloca.c
11
alloca.c
|
@ -60,6 +60,17 @@ typedef char *pointer;
|
||||||
|
|
||||||
#define NULL 0
|
#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
|
/* Define STACK_DIRECTION if you know the direction of stack
|
||||||
growth for your system; otherwise it will be automatically
|
growth for your system; otherwise it will be automatically
|
||||||
deduced at run-time.
|
deduced at run-time.
|
||||||
|
|
Loading…
Reference in a new issue