6502/vbcc/targets/ppc-warpos/include/setjmp.h
2022-05-12 21:36:39 +09:30

12 lines
159 B
C

/* setjmp.h - PowerPC */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[23+1+18*2];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif