libpicofe/common/posix.h
notaz f15ca4db35 quick support for doeblesize 'small' font
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@689 be3aeb3a-fb24-0410-a615-afba39da0efa
2009-05-11 19:34:00 +00:00

15 lines
212 B
C

/* 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 provide posix"
#endif