diff include/SDL_thread.h @ 2060:866052b01ee5

indent is evil
author Sam Lantinga <slouken@libsdl.org>
date Sat, 28 Oct 2006 16:48:03 +0000
parents 5f6550e5184f
children 4436464c4f51
line wrap: on
line diff
--- a/include/SDL_thread.h	Sat Oct 28 16:41:54 2006 +0000
+++ b/include/SDL_thread.h	Sat Oct 28 16:48:03 2006 +0000
@@ -91,12 +91,10 @@
 typedef void (__cdecl * pfnSDL_CurrentEndThread) (unsigned code);
 #endif
 
-extern DECLSPEC SDL_Thread *SDLCALL SDL_CreateThread(int (SDLCALL * f) (void *),
-                                                     void *data,
-                                                     pfnSDL_CurrentBeginThread
-                                                     pfnBeginThread,
-                                                     pfnSDL_CurrentEndThread
-                                                     pfnEndThread);
+extern DECLSPEC SDL_Thread *SDLCALL
+SDL_CreateThread(int (SDLCALL * f) (void *), void *data,
+                 pfnSDL_CurrentBeginThread pfnBeginThread,
+                 pfnSDL_CurrentEndThread pfnEndThread);
 
 #ifdef __OS2__
 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)