refactor: separate syscall interfaces from kernel space, into posix compliant structure.
[lunaix-os.git] / lunaix-os / libs / ulibc / printf.c
index 18e23876a289e86d2fdad557a37e3c714f3d31db..86c0b18a2d0304fb26e707e24b33053a1512aade 100644 (file)
@@ -1,8 +1,9 @@
 #include <klibc/stdio.h>
-#include <lunaix/lunistd.h>
 #include <lunaix/spike.h>
 #include <ulibc/stdio.h>
 
+#include <usr/unistd.h>
+
 // This is VERY bad implementation as it mixes both kernel and user space
 // code together. It is here however, just for the convenience of our testing
 // program.