improved game vidmode change detection; some iface changes
[picodrive.git] / platform / common / posix.h
CommitLineData
cc33f567 1/* define POSIX stuff: dirent, scandir, getcwd, mkdir */
713c9224 2#if defined(__linux__)
3
4#include <dirent.h>
5#include <unistd.h>
cc33f567 6#include <sys/stat.h>
7#include <sys/types.h>
713c9224 8
9#else
10
cc33f567 11#error "must provide posix"
713c9224 12
13#endif
14
15