comparison src/alloca.c @ 48539:8fa658f7a17a

Comment fix.
author Dave Love <fx@gnu.org>
date Mon, 25 Nov 2002 19:05:57 +0000
parents fa7ad139efa1
children 88902727534a
comparison
equal deleted inserted replaced
48538:6191ee17e66a 48539:8fa658f7a17a
85 malloc. The Emacs executable needs alloca to call xmalloc, because 85 malloc. The Emacs executable needs alloca to call xmalloc, because
86 ordinary malloc isn't protected from input signals. On the other 86 ordinary malloc isn't protected from input signals. On the other
87 hand, the utilities in lib-src need alloca to call malloc; some of 87 hand, the utilities in lib-src need alloca to call malloc; some of
88 them are very simple, and don't have an xmalloc routine. 88 them are very simple, and don't have an xmalloc routine.
89 89
90 Non-Emacs programs expect this to call use xmalloc. 90 Non-Emacs programs expect this to call xmalloc.
91 91
92 Callers below should use malloc. */ 92 Callers below should use malloc. */
93 93
94 #ifdef emacs 94 #ifdef emacs
95 #define malloc xmalloc 95 #define malloc xmalloc