diff options
Diffstat (limited to 'alloca.c')
-rw-r--r-- | alloca.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -26,7 +26,8 @@ #endif /* If compiling with GCC 2, this file's not needed. */ -#if defined (__GNUC__) && __GNUC__ >= 2 +#if !defined (__GNUC__) || __GNUC__ < 2 + /* If someone has defined alloca as a macro, there must be some other way alloca is supposed to work. */ #ifndef alloca |