diff options
author | dzwdz | 2022-04-07 21:25:54 +0200 |
---|---|---|
committer | dzwdz | 2022-04-07 21:25:54 +0200 |
commit | 86623b76dce72bc611f470e0e9ecad963fd558b2 (patch) | |
tree | e9f1204a3761e4389e4b51276c7d359957f4fb86 /src/kernel/arch/io.h | |
parent | da2bbef4e4f586ecf13cd5ffe9a62df3114a3483 (diff) |
kernel: remove the `/tty` device
Diffstat (limited to 'src/kernel/arch/io.h')
-rw-r--r-- | src/kernel/arch/io.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/kernel/arch/io.h b/src/kernel/arch/io.h index acba67a..ef8cb17 100644 --- a/src/kernel/arch/io.h +++ b/src/kernel/arch/io.h @@ -2,7 +2,6 @@ #include <stddef.h> void tty_init(void); -void tty_read(char *buf, size_t len); void tty_write(const char *buf, size_t len); static inline void _tty_hex(const char *buf, size_t len) { |