diff options
| author | Michael Brown | 2007-01-19 02:13:12 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-19 02:13:12 +0100 |
| commit | 73b09ecba6dad0070e106a74eeed4bc388d60e02 (patch) | |
| tree | f5ca3d4de25238da546341f367b8e52acafce43e /src/hci/commands | |
| parent | Finally move the prototypes for printf() and friends to stdio.h (diff) | |
| download | ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.tar.gz ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.tar.xz ipxe-73b09ecba6dad0070e106a74eeed4bc388d60e02.zip | |
Use stdio.h instead of vsprintf.h
Diffstat (limited to 'src/hci/commands')
| -rw-r--r-- | src/hci/commands/autoboot_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/config_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/dhcp_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/ifmgmt_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/image_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/nvo_cmd.c | 2 | ||||
| -rw-r--r-- | src/hci/commands/route_cmd.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/hci/commands/autoboot_cmd.c b/src/hci/commands/autoboot_cmd.c index d7fb2e1fb..0e6f2948d 100644 --- a/src/hci/commands/autoboot_cmd.c +++ b/src/hci/commands/autoboot_cmd.c @@ -1,4 +1,4 @@ -#include <vsprintf.h> +#include <stdio.h> #include <gpxe/command.h> #include <usr/autoboot.h> diff --git a/src/hci/commands/config_cmd.c b/src/hci/commands/config_cmd.c index a15593913..368a6ca4a 100644 --- a/src/hci/commands/config_cmd.c +++ b/src/hci/commands/config_cmd.c @@ -1,5 +1,5 @@ #include <string.h> -#include <vsprintf.h> +#include <stdio.h> #include <gpxe/command.h> #include <gpxe/settings.h> #include <gpxe/settings_ui.h> diff --git a/src/hci/commands/dhcp_cmd.c b/src/hci/commands/dhcp_cmd.c index 8cfd428e3..208f35578 100644 --- a/src/hci/commands/dhcp_cmd.c +++ b/src/hci/commands/dhcp_cmd.c @@ -18,8 +18,8 @@ #include <stdint.h> #include <stdlib.h> +#include <stdio.h> #include <getopt.h> -#include <vsprintf.h> #include <gpxe/netdevice.h> #include <gpxe/command.h> #include <usr/dhcpmgmt.h> diff --git a/src/hci/commands/ifmgmt_cmd.c b/src/hci/commands/ifmgmt_cmd.c index dc255e160..f2508e556 100644 --- a/src/hci/commands/ifmgmt_cmd.c +++ b/src/hci/commands/ifmgmt_cmd.c @@ -16,8 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <stdio.h> #include <getopt.h> -#include <vsprintf.h> #include <gpxe/netdevice.h> #include <gpxe/command.h> #include <usr/ifmgmt.h> diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c index 900886ff2..98de50e25 100644 --- a/src/hci/commands/image_cmd.c +++ b/src/hci/commands/image_cmd.c @@ -18,10 +18,10 @@ #include <stdint.h> #include <stdlib.h> +#include <stdio.h> #include <errno.h> #include <libgen.h> #include <getopt.h> -#include <vsprintf.h> #include <gpxe/image.h> #include <gpxe/command.h> #include <gpxe/initrd.h> diff --git a/src/hci/commands/nvo_cmd.c b/src/hci/commands/nvo_cmd.c index 91c132059..4392787b0 100644 --- a/src/hci/commands/nvo_cmd.c +++ b/src/hci/commands/nvo_cmd.c @@ -1,8 +1,8 @@ #include <stdint.h> #include <stdlib.h> +#include <stdio.h> #include <string.h> #include <errno.h> -#include <vsprintf.h> #include <getopt.h> #include <gpxe/nvo.h> #include <gpxe/dhcp.h> diff --git a/src/hci/commands/route_cmd.c b/src/hci/commands/route_cmd.c index 2e9de562f..227682cb4 100644 --- a/src/hci/commands/route_cmd.c +++ b/src/hci/commands/route_cmd.c @@ -16,8 +16,8 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <stdio.h> #include <getopt.h> -#include <vsprintf.h> #include <gpxe/command.h> #include <usr/route.h> |
