Mercurial > sdl-ios-xcode
diff src/thread/SDL_systhread.h @ 1361:19418e4422cb
New configure-based build system. Still work in progress, but much improved
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 16 Feb 2006 10:11:48 +0000 |
parents | 450721ad5436 |
children | d910939febfa |
line wrap: on
line diff
--- a/src/thread/SDL_systhread.h Fri Feb 10 07:29:08 2006 +0000 +++ b/src/thread/SDL_systhread.h Thu Feb 16 10:11:48 2006 +0000 @@ -22,7 +22,10 @@ /* These are functions that need to be implemented by a port of SDL */ -#include "SDL_thread_c.h" +#ifndef _SDL_systhread_h +#define _SDL_systhread_h + +#include "SDL_thread.h" /* This function creates a thread, passing args to SDL_RunThread(), saves a system-dependent thread id in thread->id, and returns 0 @@ -45,3 +48,4 @@ /* This function kills the thread and returns */ extern void SDL_SYS_KillThread(SDL_Thread *thread); +#endif /* _SDL_systhread_h */