major menu unification, minor reorganization
[picodrive.git] / platform / common / posix.h
CommitLineData
713c9224 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