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

13 lines
149 B
C
Executable File

/* setjmp.h - c16x */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[4];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif