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

12 lines
128 B
C
Executable File

#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[39];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif