uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
setjmp.h
Go to the documentation of this file.
1 #ifndef __SETJMP_H__
2 #define __SETJMP_H__
3 
4 #include <stdint.h>
5 
6 typedef struct {
7  uint32_t buf[32];
8 } jmp_buf;
9 
10 int setjmp(jmp_buf env);
11 void longjmp(jmp_buf env, int val);
12 
13 #endif