(alloca): Define to __builtin_alloca if __GNUC__,

to avoid a warning if -Wall.
This commit is contained in:
Jim Meyering 2001-10-22 08:01:22 +00:00
parent b96c3e6a5d
commit e28263f673

View File

@ -19,7 +19,9 @@
# include <config.h> # include <config.h>
#endif #endif
#ifndef __GNUC__ #if __GNUC__
# define alloca __builtin_alloca
#else
# ifdef HAVE_ALLOCA_H # ifdef HAVE_ALLOCA_H
# include <alloca.h> # include <alloca.h>
# else # else