aboutsummaryrefslogtreecommitdiff
path: root/stdlib/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/stdlib.h')
-rw-r--r--stdlib/stdlib.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
deleted file mode 100644
index 3e6619d..0000000
--- a/stdlib/stdlib.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <string.h>
-
-class Console {
-public:
- virtual void write(const String &msg) = 0;
-};
-
-void console_set(Console *ptr);
-
-void printk(const String &msg);
-
-__attribute__((__noreturn__)) void abort();