comparison src/alloca.c @ 4753:3963121bd25f

entered into RCS
author Richard M. Stallman <rms@gnu.org>
date Mon, 20 Sep 1993 20:03:30 +0000
parents 3ddc8e2be5d7
children 5be3332469e7
comparison
equal deleted inserted replaced
4752:0325106db7fd 4753:3963121bd25f
20 As a special case, alloca(0) reclaims storage without 20 As a special case, alloca(0) reclaims storage without
21 allocating any. It is a good idea to use alloca(0) in 21 allocating any. It is a good idea to use alloca(0) in
22 your main control loop, etc. to force garbage collection. */ 22 your main control loop, etc. to force garbage collection. */
23 23
24 #ifdef HAVE_CONFIG_H 24 #ifdef HAVE_CONFIG_H
25 #if defined (emacs) || defined (CONFIG_BROKETS)
25 #include <config.h> 26 #include <config.h>
27 #else
28 #include "config.h"
29 #endif
26 #endif 30 #endif
27 31
28 /* If compiling with GCC 2, this file's not needed. */ 32 /* If compiling with GCC 2, this file's not needed. */
29 #if !defined (__GNUC__) || __GNUC__ < 2 33 #if !defined (__GNUC__) || __GNUC__ < 2
30 34