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.
This commit is contained in:
Michael Brown
2006-09-27 10:58:14 +00:00
parent 6ac78f6aff
commit 88e38fa148
32 changed files with 0 additions and 32 deletions

View File

@@ -16,7 +16,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "stdio.h"
#include <stdint.h>
#include <string.h>
#include <byteswap.h>

View File

@@ -1,4 +1,3 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <byteswap.h>

View File

@@ -1,4 +1,3 @@
#include "stdio.h"
#include <stdint.h>
#include <string.h>
#include <byteswap.h>

View File

@@ -16,7 +16,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdint.h>
#include <byteswap.h>
#include <string.h>

View File

@@ -16,7 +16,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stddef.h>
#include <latch.h>
#include <gpxe/list.h>

View File

@@ -1,4 +1,3 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>

View File

@@ -1,4 +1,3 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>

View File

@@ -16,7 +16,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <assert.h>

View File

@@ -168,7 +168,6 @@ struct uip_stats uip_stat;
#endif /* UIP_STATISTICS == 1 */
#if UIP_LOGGING == 1
#include <stdio.h>
void uip_log(char *msg);
#define UIP_LOG(m) uip_log(m)
#else