Mercurial > sdl-ios-xcode
diff include/SDL_stdinc.h @ 1769:290b5baf2fca
Fixed bug #215
The current SVN trunk is missing the SDLCALL specifier at numerous locations.
It has to be added for all (possibly user provided) callbacks.
I stumbled over this while creating a makefile for the OpenWatcom compiler for
Win32.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 07 May 2006 03:40:06 +0000 |
parents | a80e1e0880b8 |
children | b98fd17b0b02 |
line wrap: on
line diff
--- a/include/SDL_stdinc.h Fri May 05 05:50:26 2006 +0000 +++ b/include/SDL_stdinc.h Sun May 07 03:40:06 2006 +0000 @@ -168,6 +168,8 @@ # elif defined(_MSC_VER) # include <malloc.h> # define alloca _alloca +# elif defined(__WATCOMC__) +# include <malloc.h> # elif defined(__AIX__) #pragma alloca # else