summaryrefslogtreecommitdiff
path: root/kernel/libc/include/stdio.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/libc/include/stdio.h')
-rw-r--r--kernel/libc/include/stdio.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/libc/include/stdio.h b/kernel/libc/include/stdio.h
new file mode 100644
index 0000000..f2bbb32
--- /dev/null
+++ b/kernel/libc/include/stdio.h
@@ -0,0 +1,9 @@
+#ifndef STDIO_H
+#define STDIO_H
+
+void putc(const char c);
+int puts(char *str);
+void delete_characther(void);
+int kprintf(const char *format, ...);
+
+#endif