quick support for doeblesize 'small' font
[libpicofe.git] / common / posix.h
index 9100141..2c2d98d 100644 (file)
@@ -1,12 +1,14 @@
-/* define POSIX stuff: dirent, scandir, getcwd */
+/* define POSIX stuff: dirent, scandir, getcwd, mkdir */
 #if defined(__linux__)
 
 #include <dirent.h>
 #include <unistd.h>
+#include <sys/stat.h>
+#include <sys/types.h>
 
 #else
 
-#error "must define dirent"
+#error "must provide posix"
 
 #endif