From 1cb50341fde1bee73a95900fdacfe3c83c209fa3 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 28 Dec 2007 08:07:57 +0000 Subject: [PATCH] Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402649 --- include/SDL_stdinc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index e62cd8fc3..f9f015689 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -212,6 +212,8 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem); # define alloca _alloca # elif defined(__WATCOMC__) # include +# elif defined(__BORLANDC__) +# include # elif defined(__DMC__) # include # elif defined(__AIX__)