Removed one more use of ()
This commit is contained in:
parent
95fbd50b15
commit
09f20dba54
2 changed files with 2 additions and 2 deletions
|
@ -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 @@
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue