notaz.gp2x.de
/
picodrive.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
sram bugfix + savestate refactoring
[picodrive.git]
/
platform
/
common
/
posix.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
/* define POSIX stuff: dirent, scandir, getcwd, mkdir */
2
#if defined(__linux__)
3
4
#include <dirent.h>
5
#include <unistd.h>
6
#include <sys/stat.h>
7
#include <sys/types.h>
8
9
#else
10
11
#error "must provide posix"
12
13
#endif
14
15