Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 284 Bytes

jumphack.c

File metadata and controls

19 lines (15 loc) · 284 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
* jumphack.c
* SDLiPhoneOS
*
*/
#include "jumphack.h"
/* see SDL_uikitevents.m for more info */
/* stores the information we need to jump back */
jmp_buf env;
/* returns the jump environment for setting / getting purposes */
jmp_buf *
Jun 26, 2010
Jun 26, 2010
16
jump_env(void)
17
18
19
{
return &env;
}