浏览代码

Only need printf(), so use vsprintf.h instead of console.h

tags/v0.9.3
Michael Brown 18 年前
父节点
当前提交
75430e813e
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      src/hci/shell.c
  2. 1
    1
      src/hci/strerror.c

+ 1
- 1
src/hci/shell.c 查看文件

18
 
18
 
19
 #include <stdint.h>
19
 #include <stdint.h>
20
 #include <stdlib.h>
20
 #include <stdlib.h>
21
-#include <console.h>
21
+#include <vsprintf.h>
22
 #include <readline/readline.h>
22
 #include <readline/readline.h>
23
 #include <gpxe/command.h>
23
 #include <gpxe/command.h>
24
 #include <gpxe/shell.h>
24
 #include <gpxe/shell.h>

+ 1
- 1
src/hci/strerror.c 查看文件

1
 #include <errno.h>
1
 #include <errno.h>
2
 #include <string.h>
2
 #include <string.h>
3
-#include <console.h>
3
+#include <vsprintf.h>
4
 #include <gpxe/errortab.h>
4
 #include <gpxe/errortab.h>
5
 
5
 
6
 /** @file
6
 /** @file

正在加载...
取消
保存