Files
FireBee_SVN/include/setjmp.h
2015-02-18 15:54:14 +00:00

12 lines
194 B
C

#ifndef _SETJMP_H_
#define _SETJMP_H_
#include "bas_types.h"
typedef uint32_t jmp_buf[18];
extern int setjmp(jmp_buf env);
extern void longjmp(jmp_buf env, int val);
#endif /* _SETJMP_H_ */