summaryrefslogtreecommitdiff
path: root/Kernel/VGA.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-17 11:40:58 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-17 11:40:58 +0200
commitd2425495ca7c24d09613649978678027f91a140d (patch)
tree9ad0e57625d6d64c431ebcf3c0555f13ba43964b /Kernel/VGA.h
parent9171521752b0b382f1f70453b4f24915999144b9 (diff)
downloadserenity-d2425495ca7c24d09613649978678027f91a140d.zip
VirtualFileSystem class builds inside Kernel.
Diffstat (limited to 'Kernel/VGA.h')
-rw-r--r--Kernel/VGA.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Kernel/VGA.h b/Kernel/VGA.h
index 747e064509..7d5ff358f4 100644
--- a/Kernel/VGA.h
+++ b/Kernel/VGA.h
@@ -8,4 +8,6 @@ void vga_set_attr(BYTE);
void vga_set_cursor(WORD);
void vga_set_cursor(BYTE row, BYTE column);
WORD vga_get_cursor();
-void kprintf(const char *fmt, ...);
+
+int kprintf(const char *fmt, ...);
+int ksprintf(char* buf, const char *fmt, ...);