aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/system.h
diff options
context:
space:
mode:
authorMarvin Borner2019-11-30 16:21:57 +0100
committerMarvin Borner2019-11-30 16:21:57 +0100
commitac947d45c288f62e927895afe7cd6a722ffdd8f8 (patch)
treecb9ed1bc1713c484b6846f068dca98e0dfc0cbc0 /src/kernel/system.h
parent0e94325936030990ac95b9ca90382aa265c95818 (diff)
Replaced vesa print functions with printf
Diffstat (limited to 'src/kernel/system.h')
-rw-r--r--src/kernel/system.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/system.h b/src/kernel/system.h
index 1fe2026..26530f9 100644
--- a/src/kernel/system.h
+++ b/src/kernel/system.h
@@ -47,20 +47,20 @@ void kernel_time();
* Display a general log message
* @param msg The message
*/
-void log(char *msg);
+void debug(const char *fmt, ...);
/**
* Display an information message
* @param msg The information
*/
-void info(char *msg);
+void info(const char *fmt, ...);
/**
* Display a warning message
* TODO: Add line number and file name
* @param msg The warning cause/reason
*/
-void warn(char *msg);
+void warn(const char *fmt, ...);
/**
* Halt the entire system and display a message