mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 08:11:31 +00:00
13 lines
271 B
C
13 lines
271 B
C
#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 */
|