Fixed alloca declaration for MPW

This commit is contained in:
Sam Lantinga
2006-05-14 05:20:36 +00:00
parent 26a61f597c
commit 530fd10d07

View File

@@ -172,6 +172,8 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem);
# include <malloc.h>
# elif defined(__AIX__)
#pragma alloca
# elif defined(__MRC__)
void *alloca (unsigned);
# else
char *alloca ();
# endif