diff -r cd87106d1d47 -r 471eb08040ce src/thread/SDL_systhread.h --- a/src/thread/SDL_systhread.h Tue Apr 12 14:38:50 2016 -0400 +++ b/src/thread/SDL_systhread.h Tue Apr 12 16:45:10 2016 -0400 @@ -60,6 +60,11 @@ /* Set the thread local storage for this thread */ extern int SDL_SYS_SetTLSData(SDL_TLSData *data); +/* This is for internal SDL use, so we don't need #ifdefs everywhere. */ +extern SDL_Thread * +SDL_CreateThreadInternal(int (SDLCALL * fn) (void *), const char *name, + const size_t stacksize, void *data); + #endif /* _SDL_systhread_h */ /* vi: set ts=4 sw=4 expandtab: */