You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setjmp.h 291B

123456789101112
  1. #ifndef ETHERBOOT_SETJMP_H
  2. #define ETHERBOOT_SETJMP_H
  3. /* Define a type for use by setjmp and longjmp */
  4. #define JBLEN 6
  5. typedef unsigned long jmp_buf[JBLEN];
  6. extern int __asmcall setjmp (jmp_buf env);
  7. extern void __asmcall longjmp (jmp_buf env, int val);
  8. #endif /* ETHERBOOT_SETJMP_H */