archsetjmp.h
来自「klibc精简化的c程序库」· C头文件 代码 · 共 18 行
H
18 行
/* * arch/ia64/include/klibc/archsetjmp.h * * Code borrowed from the FreeBSD kernel. * */#ifndef _KLIBC_ARCHSETJMP_H#define _KLIBC_ARCHSETJMP_H/* User code must not depend on the internal representation of jmp_buf. */#define _JBLEN 0x200/* guaranteed 128-bit alignment! */typedef char jmp_buf[_JBLEN] __attribute__ ((aligned(16)));#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?