diff options
author | dzwdz | 2021-07-10 16:37:45 +0200 |
---|---|---|
committer | dzwdz | 2021-07-10 16:37:45 +0200 |
commit | d093a8eea6bfb0ff7e621e9ba3307dae698322aa (patch) | |
tree | 08a5272e2813cf8db8feda4ff91d919cb9ad7330 /kernel/tty.h | |
parent | 1faac72e2514c335e2d5721dce8c9fd1da722062 (diff) |
separate the source code from object files; more modular Makefile
Diffstat (limited to 'kernel/tty.h')
-rw-r--r-- | kernel/tty.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/tty.h b/kernel/tty.h deleted file mode 100644 index 3dc1525..0000000 --- a/kernel/tty.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once -#include <stddef.h> - -void tty_putchar(char c); -void tty_write(const char *buf, size_t len); -void tty_clear(); - -#define tty_const(str) tty_write(str, sizeof(str) - 1) |