diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-17 11:40:58 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-17 11:40:58 +0200 |
commit | d2425495ca7c24d09613649978678027f91a140d (patch) | |
tree | 9ad0e57625d6d64c431ebcf3c0555f13ba43964b /Kernel/VGA.h | |
parent | 9171521752b0b382f1f70453b4f24915999144b9 (diff) | |
download | serenity-d2425495ca7c24d09613649978678027f91a140d.zip |
VirtualFileSystem class builds inside Kernel.
Diffstat (limited to 'Kernel/VGA.h')
-rw-r--r-- | Kernel/VGA.h | 4 |
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, ...); |