sysinclude.h
来自「BIOS Open Platform!」· C头文件 代码 · 共 21 行
H
21 行
#ifndef __SYSINCLUDE_H#define __SYSINCLUDE_H#ifdef BOOTSTRAP#include "asm/types.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#else /* BOOTSTRAP */#include "libc/stdlib.h"#include "libc/string.h"#endif /* BOOTSTRAP */extern int printk( const char *fmt, ... ) \ __attribute__ ((format (printf, 1, 2)));#ifdef BOOTSTRAP#define printk printf#endif#endif /* __SYSINCLUDE_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?