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/mucurses | |
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/mucurses')
-rw-r--r-- | src/hci/mucurses/alert.c | 2 | ||||
-rw-r--r-- | src/hci/mucurses/print.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/hci/mucurses/alert.c b/src/hci/mucurses/alert.c index 4e88b82a..00e959a8 100644 --- a/src/hci/mucurses/alert.c +++ b/src/hci/mucurses/alert.c @@ -1,5 +1,5 @@ #include <curses.h> -#include <vsprintf.h> +#include <stdio.h> /** @file * diff --git a/src/hci/mucurses/print.c b/src/hci/mucurses/print.c index fc14e67e..80766bc9 100644 --- a/src/hci/mucurses/print.c +++ b/src/hci/mucurses/print.c @@ -1,6 +1,7 @@ #include <curses.h> -#include <vsprintf.h> +#include <stdio.h> #include <stddef.h> +#include <vsprintf.h> #include "mucurses.h" /** @file |