您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 setjmp (jmp_buf env);
  7. extern void longjmp (jmp_buf env, int val);
  8. #endif /* ETHERBOOT_SETJMP_H */