Commit 84d5ff0f authored by Sam Lantinga's avatar Sam Lantinga

Fixed alloca declaration for MPW

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401790
parent 69d1266c
...@@ -172,6 +172,8 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem); ...@@ -172,6 +172,8 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem);
# include <malloc.h> # include <malloc.h>
# elif defined(__AIX__) # elif defined(__AIX__)
#pragma alloca #pragma alloca
# elif defined(__MRC__)
void *alloca (unsigned);
# else # else
char *alloca (); char *alloca ();
# endif # endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment