macos_defines.h

来自「bochs : one pc simulator.」· C头文件 代码 · 共 13 行

H
13
字号
#define NO_ASSEMBLER#define USE_WITH_CPU_SIM#define PARANOID#define fileno(A) 0#ifdef __cplusplus#include <cstddef>inline long read(int fd, void *buf, std::size_t nbytes);long read(int fd, void *buf, std::size_t nbytes) {return read(fd, (char*)buf, nbytes);}inline long write(int fd, const void *buf, std::size_t nbytes);long write(int fd, const void *buf, std::size_t nbytes) {return write(fd, (const char*)buf, nbytes);}#endif

⌨️ 快捷键说明

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