comparison src/video/uikit/jumphack.c @ 4661:03dcb795c583

Merged changes from the main SDL codebase
author Sam Lantinga <slouken@libsdl.org>
date Mon, 12 Jul 2010 21:09:23 -0700
parents e8045ba3f79f
children
comparison
equal deleted inserted replaced
4660:b15e7017409b 4661:03dcb795c583
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 }