Removed one more use of ()

This commit is contained in:
Sam Lantinga 2010-06-26 08:58:06 -07:00
parent 95fbd50b15
commit 09f20dba54
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ jmp_buf env;
/* returns the jump environment for setting / getting purposes */
jmp_buf *
jump_env()
jump_env(void)
{
return &env;
}

View file

@ -11,6 +11,6 @@
/* see SDL_uikitevents.m for more info */
extern jmp_buf *jump_env();
extern jmp_buf *jump_env(void);
#endif