summaryrefslogtreecommitdiffstats
path: root/src/net
diff options
context:
space:
mode:
Diffstat (limited to 'src/net')
-rw-r--r--src/net/aoe.c2
-rw-r--r--src/net/dhcpopts.c2
-rw-r--r--src/net/ethernet.c2
-rw-r--r--src/net/ipv4.c2
-rw-r--r--src/net/ipv6.c2
-rw-r--r--src/net/netdevice.c2
-rw-r--r--src/net/tcp.c2
-rw-r--r--src/net/tcp/ftp.c2
-rw-r--r--src/net/tcp/http.c2
-rw-r--r--src/net/tcp/iscsi.c2
-rw-r--r--src/net/udp/tftp.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/src/net/aoe.c b/src/net/aoe.c
index 1c3cd1d2b..58579e23d 100644
--- a/src/net/aoe.c
+++ b/src/net/aoe.c
@@ -18,7 +18,7 @@
#include <stddef.h>
#include <string.h>
-#include <vsprintf.h>
+#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include <byteswap.h>
diff --git a/src/net/dhcpopts.c b/src/net/dhcpopts.c
index 3013b669b..b2a226661 100644
--- a/src/net/dhcpopts.c
+++ b/src/net/dhcpopts.c
@@ -18,11 +18,11 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdio.h>
#include <byteswap.h>
#include <errno.h>
#include <string.h>
#include <assert.h>
-#include <vsprintf.h>
#include <gpxe/list.h>
#include <gpxe/in.h>
#include <gpxe/dhcp.h>
diff --git a/src/net/ethernet.c b/src/net/ethernet.c
index 690b22182..cee67d469 100644
--- a/src/net/ethernet.c
+++ b/src/net/ethernet.c
@@ -17,11 +17,11 @@
*/
#include <stdint.h>
+#include <stdio.h>
#include <string.h>
#include <byteswap.h>
#include <errno.h>
#include <assert.h>
-#include <vsprintf.h>
#include <gpxe/if_arp.h>
#include <gpxe/if_ether.h>
#include <gpxe/netdevice.h>
diff --git a/src/net/ipv4.c b/src/net/ipv4.c
index 065bf61c4..8bbcff155 100644
--- a/src/net/ipv4.c
+++ b/src/net/ipv4.c
@@ -1,9 +1,9 @@
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
+#include <stdio.h>
#include <errno.h>
#include <byteswap.h>
-#include <vsprintf.h>
#include <gpxe/list.h>
#include <gpxe/in.h>
#include <gpxe/arp.h>
diff --git a/src/net/ipv6.c b/src/net/ipv6.c
index 26c43dd0b..458a93758 100644
--- a/src/net/ipv6.c
+++ b/src/net/ipv6.c
@@ -2,7 +2,7 @@
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
-#include <vsprintf.h>
+#include <stdio.h>
#include <byteswap.h>
#include <gpxe/in.h>
#include <gpxe/ip6.h>
diff --git a/src/net/netdevice.c b/src/net/netdevice.c
index c5085918f..af2bbf586 100644
--- a/src/net/netdevice.c
+++ b/src/net/netdevice.c
@@ -18,10 +18,10 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdio.h>
#include <byteswap.h>
#include <string.h>
#include <errno.h>
-#include <vsprintf.h>
#include <gpxe/if_ether.h>
#include <gpxe/pkbuff.h>
#include <gpxe/tables.h>
diff --git a/src/net/tcp.c b/src/net/tcp.c
index 2311881bf..2c2f0b333 100644
--- a/src/net/tcp.c
+++ b/src/net/tcp.c
@@ -1,10 +1,10 @@
#include <string.h>
#include <stdlib.h>
+#include <stdio.h>
#include <assert.h>
#include <errno.h>
#include <byteswap.h>
#include <timer.h>
-#include <vsprintf.h>
#include <gpxe/pkbuff.h>
#include <gpxe/malloc.h>
#include <gpxe/retry.h>
diff --git a/src/net/tcp/ftp.c b/src/net/tcp/ftp.c
index 7d10d8550..785678842 100644
--- a/src/net/tcp/ftp.c
+++ b/src/net/tcp/ftp.c
@@ -1,7 +1,7 @@
#include <stddef.h>
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
-#include <vsprintf.h>
#include <assert.h>
#include <errno.h>
#include <gpxe/async.h>
diff --git a/src/net/tcp/http.c b/src/net/tcp/http.c
index 87f6eee2b..329324458 100644
--- a/src/net/tcp/http.c
+++ b/src/net/tcp/http.c
@@ -25,12 +25,12 @@
#include <stddef.h>
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <byteswap.h>
#include <errno.h>
#include <assert.h>
-#include <vsprintf.h>
#include <gpxe/async.h>
#include <gpxe/uri.h>
#include <gpxe/buffer.h>
diff --git a/src/net/tcp/iscsi.c b/src/net/tcp/iscsi.c
index 09edf697d..4d95c0b9a 100644
--- a/src/net/tcp/iscsi.c
+++ b/src/net/tcp/iscsi.c
@@ -19,7 +19,7 @@
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
-#include <vsprintf.h>
+#include <stdio.h>
#include <errno.h>
#include <assert.h>
#include <byteswap.h>
diff --git a/src/net/udp/tftp.c b/src/net/udp/tftp.c
index 992b82bae..b07c150aa 100644
--- a/src/net/udp/tftp.c
+++ b/src/net/udp/tftp.c
@@ -18,12 +18,12 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <byteswap.h>
#include <errno.h>
#include <assert.h>
-#include <vsprintf.h>
#include <gpxe/async.h>
#include <gpxe/tftp.h>
#include <gpxe/uri.h>