notaz.gp2x.de
/
libpicofe.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
major menu unification, minor reorganization
[libpicofe.git]
/
common
/
posix.h
Commit
Line
Data
049a6b3e
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