diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-09-27 10:58:14 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-09-27 10:58:14 +0000 |
commit | 88e38fa1483891f273f063f92ef71a5c33fe5406 (patch) | |
tree | c62007eae5dddf82b2b90e154ae0e4f400d6b09c /src/net/icmpv6.c | |
parent | 6ac78f6aff85b2a41d1c98011c41f622d569076a (diff) | |
download | ipxe-88e38fa1483891f273f063f92ef71a5c33fe5406.tar.gz |
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/net/icmpv6.c')
-rw-r--r-- | src/net/icmpv6.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/net/icmpv6.c b/src/net/icmpv6.c index c48bf127c..d1f58bd1d 100644 --- a/src/net/icmpv6.c +++ b/src/net/icmpv6.c @@ -1,4 +1,3 @@ -#include <stdio.h> #include <stdint.h> #include <string.h> #include <byteswap.h> |