blob: 334f466f9e5b64a9f709cf3ea3d8dc9c31e3aace [file] [log] [blame] [raw]
#ifndef LIBCFLAT_SETJMP_H
#define LIBCFLAT_SETJMP_H 1
typedef struct jmp_buf_tag {
long int regs[8];
} jmp_buf[1];
extern int setjmp (struct jmp_buf_tag env[1]);
extern void longjmp (struct jmp_buf_tag env[1], int val)
__attribute__ ((__noreturn__));
#endif /* setjmp.h */