summaryrefslogtreecommitdiff
path: root/src/arch/i386/tty.h
diff options
context:
space:
mode:
authordzwdz2021-07-10 19:36:50 +0200
committerdzwdz2021-07-10 19:36:50 +0200
commita90f613e50b1677b03d19793039e0769a09caf9f (patch)
tree21b10fb5f924d383d13e711b23f2c0b5181feabf /src/arch/i386/tty.h
parente1a46050ac834b0d1a125847a117edb56d53f32a (diff)
abstract away logging
Now, the kernel only interfaces with the architecture dependent stuff via functions declared in generic.h. I'll write a linter enforcing this soon.
Diffstat (limited to 'src/arch/i386/tty.h')
-rw-r--r--src/arch/i386/tty.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/i386/tty.h b/src/arch/i386/tty.h
index 3dc1525..cbb8efc 100644
--- a/src/arch/i386/tty.h
+++ b/src/arch/i386/tty.h
@@ -4,5 +4,3 @@
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)