diff options
author | Marvin Borner | 2019-11-30 16:21:57 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-30 16:21:57 +0100 |
commit | ac947d45c288f62e927895afe7cd6a722ffdd8f8 (patch) | |
tree | cb9ed1bc1713c484b6846f068dca98e0dfc0cbc0 /src/mlibc/stdio.h | |
parent | 0e94325936030990ac95b9ca90382aa265c95818 (diff) |
Replaced vesa print functions with printf
Diffstat (limited to 'src/mlibc/stdio.h')
-rw-r--r-- | src/mlibc/stdio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mlibc/stdio.h b/src/mlibc/stdio.h index ae377a2..82f1cfb 100644 --- a/src/mlibc/stdio.h +++ b/src/mlibc/stdio.h @@ -3,8 +3,12 @@ // TODO: Input methods +#include <stdarg.h> + void writec(char c); +void vprintf(const char *format, va_list args); + void printf(const char *format, ...); #endif |