Removed one more use of ()

This commit is contained in:
Sam Lantinga
2010-06-26 08:58:06 -07:00
parent b90f3fea9c
commit fe6051e551
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