Commit 09f20dba authored by Sam Lantinga's avatar Sam Lantinga

Removed one more use of ()

parent 95fbd50b
...@@ -13,7 +13,7 @@ jmp_buf env; ...@@ -13,7 +13,7 @@ jmp_buf env;
/* returns the jump environment for setting / getting purposes */ /* returns the jump environment for setting / getting purposes */
jmp_buf * jmp_buf *
jump_env() jump_env(void)
{ {
return &env; return &env;
} }
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
/* see SDL_uikitevents.m for more info */ /* see SDL_uikitevents.m for more info */
extern jmp_buf *jump_env(); extern jmp_buf *jump_env(void);
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment