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/syscall/actions/sys_putch.c | |
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/syscall/actions/sys_putch.c')
-rw-r--r-- | src/kernel/syscall/actions/sys_putch.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/kernel/syscall/actions/sys_putch.c b/src/kernel/syscall/actions/sys_putch.c new file mode 100644 index 0000000..beaa4a2 --- /dev/null +++ b/src/kernel/syscall/actions/sys_putch.c @@ -0,0 +1,9 @@ +#include <stdint.h> +#include <kernel/lib/stdio.h> +#include <kernel/lib/string.h> + +uint32_t sys_putch(char ch) +{ + putch(ch); + return 0; +}
\ No newline at end of file |