diff options
author | Marvin Borner | 2020-04-28 20:59:57 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-28 20:59:57 +0200 |
commit | 5f8b5ce7efb7738eaebad43f9648975788ae19ff (patch) | |
tree | ab8fc4d4baa4adb99dc90461df689650acf34cef /src/kernel/lib/stdio.h | |
parent | bfe16de4be67565f1a1e7b1331fcbe3aedf9c54e (diff) |
Fixed userspace entering...
Many other fixes too, but I won't mention them because I don't want to
:)
Diffstat (limited to 'src/kernel/lib/stdio.h')
-rw-r--r-- | src/kernel/lib/stdio.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/kernel/lib/stdio.h b/src/kernel/lib/stdio.h index 8668775..7dae60e 100644 --- a/src/kernel/lib/stdio.h +++ b/src/kernel/lib/stdio.h @@ -5,9 +5,7 @@ char getch(); -char *readline(); - -void writec(char c); +void putch(char c); void vprintf(const char *fmt, va_list args); |