comparison src/video/uikit/jumphack.c @ 4473:e8045ba3f79f

Removed one more use of ()
author Sam Lantinga <slouken@libsdl.org>
date Sat, 26 Jun 2010 08:58:06 -0700
parents f55c87ae336b
children
comparison
equal deleted inserted replaced
4472:791b3256fb22 4473:e8045ba3f79f
11 /* stores the information we need to jump back */ 11 /* stores the information we need to jump back */
12 jmp_buf env; 12 jmp_buf env;
13 13
14 /* returns the jump environment for setting / getting purposes */ 14 /* returns the jump environment for setting / getting purposes */
15 jmp_buf * 15 jmp_buf *
16 jump_env() 16 jump_env(void)
17 { 17 {
18 return &env; 18 return &env;
19 } 19 }