[svn] Updated alloca declaration.

This commit is contained in:
hniksic 2005-07-03 18:48:47 -07:00
parent 5d4ff69084
commit 1b7f568562
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
* config-post.h (alloca): Updated declaration to not enumerate all
Windows compilers.
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
* openssl.c (openssl_errstr): Separate error messages with "; ".

View File

@ -56,8 +56,11 @@
#if HAVE_ALLOCA_H
# include <alloca.h>
#elif defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
#elif defined WINDOWS
# include <malloc.h>
# ifndef alloca
# define alloca _alloca
# endif
#elif defined __GNUC__
# define alloca __builtin_alloca
#elif defined _AIX