diff src/thread/generic/SDL_systhread.c @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children
line wrap: on
line diff
--- a/src/thread/generic/SDL_systhread.c	Mon May 29 03:53:21 2006 +0000
+++ b/src/thread/generic/SDL_systhread.c	Mon May 29 04:04:35 2006 +0000
@@ -27,32 +27,32 @@
 #include "../SDL_systhread.h"
 
 int
-SDL_SYS_CreateThread (SDL_Thread * thread, void *args)
+SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
 {
-    SDL_SetError ("Threads are not supported on this platform");
+    SDL_SetError("Threads are not supported on this platform");
     return (-1);
 }
 
 void
-SDL_SYS_SetupThread (void)
+SDL_SYS_SetupThread(void)
 {
     return;
 }
 
 Uint32
-SDL_ThreadID (void)
+SDL_ThreadID(void)
 {
     return (0);
 }
 
 void
-SDL_SYS_WaitThread (SDL_Thread * thread)
+SDL_SYS_WaitThread(SDL_Thread * thread)
 {
     return;
 }
 
 void
-SDL_SYS_KillThread (SDL_Thread * thread)
+SDL_SYS_KillThread(SDL_Thread * thread)
 {
     return;
 }