Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
slouken committed Sep 9, 2017
1 parent 8004be6 commit f333778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/begin_code.h
Expand Up @@ -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
Expand Down

0 comments on commit f333778

Please sign in to comment.