major menu unification, minor reorganization
[libpicofe.git] / common / posix.h
1 /* define POSIX stuff: dirent, scandir, getcwd */
2 #if defined(__linux__)
3
4 #include <dirent.h>
5 #include <unistd.h>
6
7 #else
8
9 #error "must define dirent"
10
11 #endif
12
13