setjmp.h - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
setjmp.h (186B)
---
1 #ifndef _SETJMP_H
2 #define _SETJMP_H
3
4 #include <arch/setjmp.h>
5
6 #define setjmp(x) setjmp(x)
7
8 extern int setjmp(jmp_buf);
9 extern void longjmp(jmp_buf, int);
10
11 #define setjmp setjmp
12
13 #endif