Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / win32 / setjmp.h
1 #ifndef _SETJMP
2 #define _SETJMP
3
4
5 typedef char jmp_buf[64];
6
7 #define setjmp(x)  (x),__eicsetjmp
8 #define longjmp(x,y) {int f = y; (x)+(f),__eiclongjmp;}
9
10
11 #endif
12
13
14
15
16
17