aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/syscall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/include/syscall.h')
-rw-r--r--src/lib/include/syscall.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/include/syscall.h b/src/lib/include/syscall.h
new file mode 100644
index 0000000..d6df4ec
--- /dev/null
+++ b/src/lib/include/syscall.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <stddef.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+#include <fs.h>
+#include <debug.h>
+
+void dbg_print(const char* str);
+void yield();
+