comparison include/SDL_stdinc.h @ 1659:14717b52abc0 SDL-1.3

Merge trunk-1.3-3
author Sam Lantinga <slouken@libsdl.org>
date Wed, 17 May 2006 08:18:28 +0000
parents a80e1e0880b8
children 782fd950bd46
comparison
equal deleted inserted replaced
1658:e49147870aac 1659:14717b52abc0
166 # elif defined(__GNUC__) 166 # elif defined(__GNUC__)
167 # define alloca __builtin_alloca 167 # define alloca __builtin_alloca
168 # elif defined(_MSC_VER) 168 # elif defined(_MSC_VER)
169 # include <malloc.h> 169 # include <malloc.h>
170 # define alloca _alloca 170 # define alloca _alloca
171 # elif defined(__WATCOMC__)
172 # include <malloc.h>
171 # elif defined(__AIX__) 173 # elif defined(__AIX__)
172 #pragma alloca 174 #pragma alloca
175 # elif defined(__MRC__)
176 void *alloca (unsigned);
173 # else 177 # else
174 char *alloca (); 178 char *alloca ();
175 # endif 179 # endif
176 #endif 180 #endif
177 #ifdef HAVE_ALLOCA 181 #ifdef HAVE_ALLOCA