remove trailingspaces, include correctly alloca.h

SVN revision: 31655
This commit is contained in:
doursse 2007-09-08 18:21:57 +00:00 committed by doursse
parent 67ab2130ac
commit 5f24fc14bf
1 changed files with 65 additions and 52 deletions

View File

@ -15,6 +15,19 @@
#ifdef HAVE_ALLOCA_H #ifdef HAVE_ALLOCA_H
# include <alloca.h> # include <alloca.h>
#elif defined __GNUC__
# define alloca __builtin_alloca
#elif defined _AIX
# define alloca __alloca
#elif defined _MSC_VER
# include <malloc.h>
# define alloca _alloca
#else
# include <stddef.h>
# ifdef __cplusplus
extern "C"
# endif
void *alloca (size_t);
#endif #endif
#include <stdlib.h> #include <stdlib.h>