Files
ipxe/src/arch/i386/include/setjmp.h

13 lines
291 B
C
Raw Normal View History

2005-03-08 18:53:11 +00:00
#ifndef ETHERBOOT_SETJMP_H
#define ETHERBOOT_SETJMP_H
/* Define a type for use by setjmp and longjmp */
#define JBLEN 6
typedef unsigned long jmp_buf[JBLEN];
extern int __asmcall setjmp (jmp_buf env);
extern void __asmcall longjmp (jmp_buf env, int val);
2005-03-08 18:53:11 +00:00
#endif /* ETHERBOOT_SETJMP_H */