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