📄 machdep.h
字号:
/* * machdep.h -- architecture dependent include files * all other files should include this header for * machine related dependencies *//* Copyright 1984-2005 Wind River Systems, Inc. *//*modification history--------------------01g,13jun05,vvv cleanup of build flags01f,20nov03,niq Remove copyright_wrs.h file inclusion01e,23apr03,pas removed ptr_t01d,27jun02,ppp merging TeamF1's t22 changes (01d,10jun02,rvr port to tor22 (teamf1))01c,01oct01,nee adding defin. for intptr_t01b,08aug01,ann adding some more OS dependant includes01a,06aug01,qli adding MACRO redefinitons*/#ifndef _MACHINE_DEP_H_#define _MACHINE_DEP_H_#include "ansi.h"#include "endian.h"#include "param.h"#if 0typedef long long int64_t;#endif /* #if 0 */#include "../types.h"typedef __uintptr_t uintptr_t;typedef __intptr_t intptr_t;#if 0typedef unsigned char u_int8_t;typedef unsigned short u_int16_t;typedef unsigned long u_int32_t;typedef __uint64_t uint64_t;typedef __intptr_t intptr_t;typedef __uintptr_t uintptr_t;#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -