diff options
Diffstat (limited to 'src/kernel/lib/stdio/putch.c')
-rw-r--r-- | src/kernel/lib/stdio/putch.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kernel/lib/stdio/putch.c b/src/kernel/lib/stdio/putch.c new file mode 100644 index 0000000..f7e0248 --- /dev/null +++ b/src/kernel/lib/stdio/putch.c @@ -0,0 +1,6 @@ +#include <kernel/graphics/vesa.h> + +void putch(char c) +{ + vesa_draw_char(c); +}
\ No newline at end of file |