aboutsummaryrefslogtreecommitdiff
path: root/stdlib/stdlib.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-01-31 23:24:42 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-01-31 23:24:42 +0200
commit950f164a2eb851dbab0aacb44334f0b687d123e8 (patch)
treea31c6e3140de2b208eca99e82535d740e9ca4039 /stdlib/stdlib.h
parentInitial commit (diff)
downloadkernel.cpp-950f164a2eb851dbab0aacb44334f0b687d123e8.tar.xz
libk: add its own makefile
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();