ansi.h
来自「很好的一个嵌入式linux平台下的bootloader」· C头文件 代码 · 共 29 行
H
29 行
/* * ansi.h : machine dependent ANSI type definitions * Copyright (c) 1993 Algorithmics Ltd. */#ifndef __MIPS_ANSI_H_#define __MIPS_ANSI_H_#define _ANSI_H_/* * Types which are fundamental to the implementation and may appear in * more than one standard header are defined here. Standard headers * then use: * #ifdef _SIZE_T_ * typedef _SIZE_T_ size_t; * #undef _SIZE_T_ * #endif *//* GNU specific, but gets round builtin_... compatibility problems */#define _SIZE_T_ __typeof(sizeof(int)) /* works with builtin_... */#define _PTRDIFF_T_ long#define _CLOCK_T_ unsigned long#define _TIME_T_ long#define _WCHAR_T_ unsigned short /* ISO 10646 PLANE 0 (UNICODE) */#define _VA_LIST_ void *#endif /* !__MIPS_ANSI_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?