diff options
| author | Michael Brown | 2006-09-27 12:58:14 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-09-27 12:58:14 +0200 |
| commit | 88e38fa1483891f273f063f92ef71a5c33fe5406 (patch) | |
| tree | c62007eae5dddf82b2b90e154ae0e4f400d6b09c /src/arch/i386/core | |
| parent | added stdio.h to includes for DBG compilation (diff) | |
| download | ipxe-88e38fa1483891f273f063f92ef71a5c33fe5406.tar.gz ipxe-88e38fa1483891f273f063f92ef71a5c33fe5406.tar.xz ipxe-88e38fa1483891f273f063f92ef71a5c33fe5406.zip | |
We don't actually have a stdio.h header file. Our printf() functions are
defined in vsprintf.h. (This may change, since vsprintf.h is a
non-standard name, but for now it's the one to use.)
There should be no need to include vsprintf.h just for DBG() statements,
since include/compiler.h forces it in for a debug build anyway.
Diffstat (limited to 'src/arch/i386/core')
| -rw-r--r-- | src/arch/i386/core/load_buffer.c | 1 | ||||
| -rw-r--r-- | src/arch/i386/core/relocate.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/i386/core/load_buffer.c b/src/arch/i386/core/load_buffer.c index 4f19a3ce5..3e34d2b53 100644 --- a/src/arch/i386/core/load_buffer.c +++ b/src/arch/i386/core/load_buffer.c @@ -1,4 +1,3 @@ -#include <stdio.h> #include "io.h" #include "load_buffer.h" diff --git a/src/arch/i386/core/relocate.c b/src/arch/i386/core/relocate.c index 1e9332eef..c9ac7ee12 100644 --- a/src/arch/i386/core/relocate.c +++ b/src/arch/i386/core/relocate.c @@ -1,4 +1,3 @@ -#include <stdio.h> #include <io.h> #include <registers.h> #include <memmap.h> |
