aboutsummaryrefslogtreecommitdiff
path: root/src/output.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-01-15 13:52:14 -0500
committerKevin O'Connor <kevin@koconnor.net>2014-01-22 17:30:30 -0500
commitbb1fcb4507095d47f504fab344e589f67e87854b (patch)
tree83b9901751179bb33721b991616ff2d68adb5ae6 /src/output.h
parent940fc1fc58b4f2a1c3baa8a5bb907f7b22ba0a31 (diff)
downloadseabios-hppa-bb1fcb4507095d47f504fab344e589f67e87854b.zip
seabios-hppa-bb1fcb4507095d47f504fab344e589f67e87854b.tar.gz
seabios-hppa-bb1fcb4507095d47f504fab344e589f67e87854b.tar.bz2
debug: Unify the SeaBIOS debug version banner.
Introduce debug_banner() and use it in all the places SeaBIOS version is displayed for debugging purposes. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/output.h')
-rw-r--r--src/output.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/output.h b/src/output.h
index 6601035..42a76b8 100644
--- a/src/output.h
+++ b/src/output.h
@@ -4,6 +4,7 @@
#include "types.h" // u32
// output.c
+void debug_banner(void);
void panic(const char *fmt, ...)
__attribute__ ((format (printf, 1, 2))) __noreturn;
void printf(const char *fmt, ...)