FoenixMCP/vbcc/targets/m68k-foenix/include/setjmp.h

15 lines
278 B
C
Raw Normal View History

2021-08-30 10:24:51 -04:00
#ifndef __SETJMP_H
#define __SETJMP_H 1
#if defined(__M68881) || defined(__M68882)
/* direct FPU support */
typedef unsigned char jmp_buf[13*4+6*12];
#else
typedef unsigned char jmp_buf[13*4];
#endif
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif /* __SETJMP_H */