OCD fixes: Adds a space after /* (glory to regular expressions!)

This commit is contained in:
Gabriel Jacobo 2013-08-21 09:47:10 -03:00
parent 695344d163
commit 1e49b1ed6e
83 changed files with 459 additions and 459 deletions

View file

@ -52,7 +52,7 @@ extern "C" {
/**
* \name Mutex functions
*/
/*@{ */
/* @{ */
/* The SDL mutex structure, defined in SDL_sysmutex.c */
struct SDL_mutex;
@ -94,13 +94,13 @@ extern DECLSPEC int SDLCALL SDL_UnlockMutex(SDL_mutex * mutex);
*/
extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex * mutex);
/*@} *//*Mutex functions */
/* @} *//* Mutex functions */
/**
* \name Semaphore functions
*/
/*@{ */
/* @{ */
/* The SDL semaphore structure, defined in SDL_syssem.c */
struct SDL_semaphore;
@ -154,13 +154,13 @@ extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem * sem);
*/
extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem * sem);
/*@} *//*Semaphore functions */
/* @} *//* Semaphore functions */
/**
* \name Condition variable functions
*/
/*@{ */
/* @{ */
/* The SDL condition variable structure, defined in SDL_syscond.c */
struct SDL_cond;
@ -237,7 +237,7 @@ extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex);
extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond * cond,
SDL_mutex * mutex, Uint32 ms);
/*@} *//*Condition variable functions */
/* @} *//* Condition variable functions */
/* Ends C function definitions when using C++ */