1.1 --- a/src/thread/generic/SDL_systhread.c Mon May 29 03:53:21 2006 +0000
1.2 +++ b/src/thread/generic/SDL_systhread.c Mon May 29 04:04:35 2006 +0000
1.3 @@ -27,32 +27,32 @@
1.4 #include "../SDL_systhread.h"
1.5
1.6 int
1.7 -SDL_SYS_CreateThread (SDL_Thread * thread, void *args)
1.8 +SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
1.9 {
1.10 - SDL_SetError ("Threads are not supported on this platform");
1.11 + SDL_SetError("Threads are not supported on this platform");
1.12 return (-1);
1.13 }
1.14
1.15 void
1.16 -SDL_SYS_SetupThread (void)
1.17 +SDL_SYS_SetupThread(void)
1.18 {
1.19 return;
1.20 }
1.21
1.22 Uint32
1.23 -SDL_ThreadID (void)
1.24 +SDL_ThreadID(void)
1.25 {
1.26 return (0);
1.27 }
1.28
1.29 void
1.30 -SDL_SYS_WaitThread (SDL_Thread * thread)
1.31 +SDL_SYS_WaitThread(SDL_Thread * thread)
1.32 {
1.33 return;
1.34 }
1.35
1.36 void
1.37 -SDL_SYS_KillThread (SDL_Thread * thread)
1.38 +SDL_SYS_KillThread(SDL_Thread * thread)
1.39 {
1.40 return;
1.41 }