refactor: add user space printf.
[lunaix-os.git] / lunaix-os / includes / ulibc / stdio.h
diff --git a/lunaix-os/includes/ulibc/stdio.h b/lunaix-os/includes/ulibc/stdio.h
new file mode 100644 (file)
index 0000000..e9496a8
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef __LUNAIX_USTDIO_H
+#define __LUNAIX_USTDIO_H
+
+#define stdout 0
+#define stdin 1
+
+void
+printf(const char* fmt, ...);
+
+#endif /* __LUNAIX_USTDIO_H */