From 4546c75d685475d8b9f215b588364e1d1bbd0b79 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 19:21:29 +0200 Subject: MUCH work in libc Also cleaned up some syscalls etc --- src/userspace/libc/stdio.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/userspace/libc/stdio.h') diff --git a/src/userspace/libc/stdio.h b/src/userspace/libc/stdio.h index 13ab933..d6779dd 100644 --- a/src/userspace/libc/stdio.h +++ b/src/userspace/libc/stdio.h @@ -1,8 +1,16 @@ #ifndef MELVIX_STDIO_H #define MELVIX_STDIO_H +#include + // File operations // Character input/output +char getch(); +void putch(char ch); +void puts(char *data); + +void printf(char *fmt, ...); +void vprintf(char *fmt, va_list args); #endif \ No newline at end of file -- cgit v1.2.3