From 2d2fa31b377444991e7993c37f6d6900c6051aca Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 14 Sep 2013 21:55:26 -0400 Subject: Move function definitions for output.c from util.h to new file output.h. Also, sort the order of include files in the c files. Signed-off-by: Kevin O'Connor --- src/output.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/output.c') diff --git a/src/output.c b/src/output.c index e69a09a0..c38c70cb 100644 --- a/src/output.c +++ b/src/output.c @@ -7,14 +7,15 @@ #include // va_list #include "farptr.h" // GET_VAR -#include "util.h" // printf #include "bregs.h" // struct bregs #include "config.h" // CONFIG_* #include "biosvar.h" // GET_GLOBAL #include "fw/paravirt.h" // PlatformRunningOn #include "malloc.h" // malloc_tmp +#include "output.h" // dprintf #include "stacks.h" // call16_int #include "string.h" // memset +#include "util.h" // ScreenAndDebug struct putcinfo { void (*func)(struct putcinfo *info, char c); -- cgit