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

13 lines
159 B
C
Executable File

/* setjmp.h - 6502 */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef unsigned char jmp_buf[5];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif