alloca is in stdlib.h on some platforms.

SVN revision: 9556
This commit is contained in:
rbdpngn 2004-04-01 17:32:30 +00:00 committed by rbdpngn
parent 34f5a0f58c
commit 2938b2f219
2 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,7 @@ AC_HEADER_STDC
AC_C_CONST
AM_ENABLE_SHARED
AM_PROG_LIBTOOL
AC_FUNC_ALLOCA
if test "x${exec_prefix}" = "xNONE"; then
if test "x${prefix}" = "xNONE"; then

View File

@ -11,7 +11,10 @@
#include <limits.h>
#include <stdarg.h>
#include <string.h>
#if HAVE_ALLOCA_H
#include <alloca.h>
#endif
typedef enum _Embryo_Opcode Embryo_Opcode;