From f33377802ad13ee55102a683e1a4fc93d656a8d7 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 9 Sep 2017 07:42:29 -0700 Subject: [PATCH] Fixed bug 3807 - Remove restriction from DECLSPEC macro for OS/2 Ozkan Sezer The following patch removes the unnecessary / wrong Watcom restriction from the DECLSPEC macro for OS/2. --- include/begin_code.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/begin_code.h b/include/begin_code.h index 1e78a4dfa..5372d6f04 100644 --- a/include/begin_code.h +++ b/include/begin_code.h @@ -61,7 +61,7 @@ # else # define DECLSPEC __declspec(dllexport) # endif -# elif defined(__OS2__) && defined(__WATCOMC__) +# elif defined(__OS2__) # ifdef BUILD_SDL # define DECLSPEC __declspec(dllexport) # else