kernel_types.h

来自「它通过提供glibc兼容使得应用程序移植到较小的c 库时相当得容易. 它能够应用」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef _BITS_KERNEL_TYPES_H#define _BITS_KERNEL_TYPES_H/* Sigh.  We need to carefully wrap this one...  No guarantees * that the asm/posix_types.h kernel header is working.  Many * arches have broken headers that introduce tons of gratuitous * conflicts with uClibc's namespace.   See bits/kernel_types.h * for i386, arm, etc for examples... */#warning You really should include a proper bits/kernel_types.h for your architecture #ifndef __GLIBC__#define __GLIBC__ 2#include <asm/posix_types.h>#undef __GLIBC__#else#include <asm/posix_types.h>#endif#endif /* _BITS_KERNEL_TYPES_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?