diff options
-rw-r--r-- | include/stdio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index 636304c3..e1aa1a33 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -25,4 +25,10 @@ #define EOF (-1) #endif +void console_putchar(char c); +char console_getchar(void); + +#define getchar console_getchar +#define putchar console_putchar + #endif /* _STDIO_H */ |