mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 19:38:37 +03:00
Initial revision
This commit is contained in:
12
src/arch/i386/include/setjmp.h
Normal file
12
src/arch/i386/include/setjmp.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#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 setjmp (jmp_buf env);
|
||||
extern void longjmp (jmp_buf env, int val);
|
||||
|
||||
#endif /* ETHERBOOT_SETJMP_H */
|
||||
Reference in New Issue
Block a user