Last change
on this file since 16444 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
271 bytes
|
Line | |
---|
1 | #ifndef ETHERBOOT_SETJMP_H
|
---|
2 | #define ETHERBOOT_SETJMP_H
|
---|
3 |
|
---|
4 |
|
---|
5 | /* Define a type for use by setjmp and longjmp */
|
---|
6 | #define JBLEN 6
|
---|
7 | typedef unsigned long jmp_buf[JBLEN];
|
---|
8 |
|
---|
9 | extern int setjmp (jmp_buf env);
|
---|
10 | extern void longjmp (jmp_buf env, int val);
|
---|
11 |
|
---|
12 | #endif /* ETHERBOOT_SETJMP_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.