mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Updated alloca declaration.
This commit is contained in:
parent
5d4ff69084
commit
1b7f568562
@ -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 "; ".
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user