remove the includes that obsoleted since last refactoring
[lunaix-os.git] / lunaix-os / usr / libc / src / itoa.c
index d60599fe1a810d63f1905f8277d4f5d24ed3489a..18f4e07bcb9776facaf71701723948e23f3628a7 100644 (file)
@@ -1,5 +1,5 @@
-#include <stddef.h>
 #include <stdlib.h>
+#include <sys/types.h>
 
 char base_char[] = "0123456789abcdefghijklmnopqrstuvwxyz";
 
@@ -43,4 +43,4 @@ char*
 itoa(int value, char* str, int base)
 {
     return __itoa_internal(value, str, base, NULL);
-}
\ No newline at end of file
+}