diff options
author | Ludovic Courtès <ludo@gnu.org> | 2007-07-29 15:16:46 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2007-07-29 15:16:46 +0000 |
commit | f7439099748d8f1bd4806b96c989897f22b0634e (patch) | |
tree | ce16ecf210e62dd7d71bc71380fbdd9a0301da4c /libguile/filesys.c | |
parent | 6caac03c93f3c0657a9487ee175b2779eae0f747 (diff) | |
download | guile-f7439099748d8f1bd4806b96c989897f22b0634e.tar.gz |
Changes from arch/CVS synchronization
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index 1798bb698..0e90105ec 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -29,23 +29,7 @@ # include <config.h> #endif -/* This blob per the Autoconf manual (under "Particular Functions"). */ -#if HAVE_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 +#include <alloca.h> #include <stdio.h> #include <errno.h> |