Added missing void

This commit is contained in:
Sam Lantinga 2009-01-04 23:36:53 +00:00
parent 29bef52fea
commit 2429aeeee4
2 changed files with 3 additions and 3 deletions

View File

@ -133,10 +133,10 @@ typedef struct SDL_version
extern DECLSPEC void SDLCALL SDL_GetVersion(SDL_version * ver);
/**
* \fn int SDL_GetRevision()
* \fn int SDL_GetRevision(void)
* \brief Get the code revision of SDL that is linked against your program.
*/
extern DECLSPEC int SDLCALL SDL_GetRevision();
extern DECLSPEC int SDLCALL SDL_GetRevision(void);
/* Ends C function definitions when using C++ */
#ifdef __cplusplus

View File

@ -298,7 +298,7 @@ SDL_GetVersion(SDL_version * ver)
/* Get the library source revision */
int
SDL_GetRevision()
SDL_GetRevision(void)
{
return SDL_REVISION;
}