summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorMichael Brown2007-01-19 02:13:12 +0100
committerMichael Brown2007-01-19 02:13:12 +0100
commit73b09ecba6dad0070e106a74eeed4bc388d60e02 (patch)
treef5ca3d4de25238da546341f367b8e52acafce43e /src/usr
parentFinally move the prototypes for printf() and friends to stdio.h (diff)
downloadipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.tar.gz
ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.tar.xz
ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.zip
Use stdio.h instead of vsprintf.h
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/autoboot.c2
-rw-r--r--src/usr/dhcpmgmt.c2
-rw-r--r--src/usr/ifmgmt.c2
-rw-r--r--src/usr/imgmgmt.c2
-rw-r--r--src/usr/route.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/autoboot.c b/src/usr/autoboot.c
index ebafde7e..0e606efb 100644
--- a/src/usr/autoboot.c
+++ b/src/usr/autoboot.c
@@ -17,8 +17,8 @@
*/
#include <string.h>
+#include <stdio.h>
#include <errno.h>
-#include <vsprintf.h>
#include <gpxe/netdevice.h>
#include <gpxe/dhcp.h>
#include <gpxe/image.h>
diff --git a/src/usr/dhcpmgmt.c b/src/usr/dhcpmgmt.c
index 42a0f2b7..060dd67e 100644
--- a/src/usr/dhcpmgmt.c
+++ b/src/usr/dhcpmgmt.c
@@ -17,8 +17,8 @@
*/
#include <string.h>
+#include <stdio.h>
#include <byteswap.h>
-#include <vsprintf.h>
#include <gpxe/in.h>
#include <gpxe/ip.h>
#include <gpxe/dhcp.h>
diff --git a/src/usr/ifmgmt.c b/src/usr/ifmgmt.c
index 7b9d8470..ff5b34a6 100644
--- a/src/usr/ifmgmt.c
+++ b/src/usr/ifmgmt.c
@@ -17,7 +17,7 @@
*/
#include <string.h>
-#include <vsprintf.h>
+#include <stdio.h>
#include <gpxe/netdevice.h>
#include <gpxe/device.h>
#include <usr/ifmgmt.h>
diff --git a/src/usr/imgmgmt.c b/src/usr/imgmgmt.c
index 06ae872e..0d2c9cb4 100644
--- a/src/usr/imgmgmt.c
+++ b/src/usr/imgmgmt.c
@@ -18,8 +18,8 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdio.h>
#include <errno.h>
-#include <vsprintf.h>
#include <gpxe/image.h>
#include <gpxe/umalloc.h>
#include <gpxe/download.h>
diff --git a/src/usr/route.c b/src/usr/route.c
index b7f02f57..f3a49f46 100644
--- a/src/usr/route.c
+++ b/src/usr/route.c
@@ -16,7 +16,7 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <vsprintf.h>
+#include <stdio.h>
#include <gpxe/netdevice.h>
#include <gpxe/ip.h>
#include <usr/route.h>