Skip to content

Commit

Permalink
updated includes for _exit()
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Oct 18, 2019
1 parent 24bee6e commit 9c14c78
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/SDL.c
Expand Up @@ -22,8 +22,10 @@

#if defined(__WIN32__)
#include "core/windows/SDL_windows.h"
#elif defined(__OS2__)
#include <stdlib.h> /* For _exit() */
#elif !defined(__WINRT__)
#include <unistd.h> // For _exit(), etc.
#include <unistd.h> /* For _exit(), etc. */
#endif

#if defined(__EMSCRIPTEN__)
Expand Down

0 comments on commit 9c14c78

Please sign in to comment.