選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

setjmp.h 287B

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