mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-08-31 02:43:38 +00:00
Updated source to match SDL function prototype style
This commit is contained in:
@@ -38,8 +38,7 @@ struct SDL_Condition
|
||||
};
|
||||
|
||||
/* Create a condition variable */
|
||||
SDL_Condition *
|
||||
SDL_CreateCondition(void)
|
||||
SDL_Condition *SDL_CreateCondition(void)
|
||||
{
|
||||
SDL_Condition *cond;
|
||||
|
||||
|
||||
@@ -37,8 +37,7 @@ struct SDL_Mutex
|
||||
};
|
||||
|
||||
/* Create a mutex */
|
||||
SDL_Mutex *
|
||||
SDL_CreateMutex(void)
|
||||
SDL_Mutex *SDL_CreateMutex(void)
|
||||
{
|
||||
SDL_Mutex *mutex = NULL;
|
||||
SceInt32 res = 0;
|
||||
|
||||
Reference in New Issue
Block a user