aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/stdio/writec.c
diff options
context:
space:
mode:
authorMarvin Borner2019-11-24 23:34:32 +0100
committerMarvin Borner2019-11-24 23:34:32 +0100
commitbb57b124d1bb385d41747f50be7dd4f3625539c1 (patch)
treefe461afad63df40571784565e8d435cba8c8e59c /src/mlibc/stdio/writec.c
parentf9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff)
Major coding style reformatting -> Kernighan & Ritchie
This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel
Diffstat (limited to 'src/mlibc/stdio/writec.c')
-rw-r--r--src/mlibc/stdio/writec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mlibc/stdio/writec.c b/src/mlibc/stdio/writec.c
index 60f69e8..94d4fed 100644
--- a/src/mlibc/stdio/writec.c
+++ b/src/mlibc/stdio/writec.c
@@ -1,5 +1,6 @@
#include <kernel/graphics/vesa.h>
-void writec(char c) {
+void writec(char c)
+{
vesa_draw_char(c);
} \ No newline at end of file