mirror of
https://github.com/FunKey-Project/picofe-irixxxx.git
synced 2026-02-06 23:15:27 +01:00
add minimal PSP support
This commit is contained in:
parent
a23a278d1e
commit
dfe767a5fa
13
posix.h
13
posix.h
@ -17,6 +17,19 @@
|
||||
#define DT_DIR 0
|
||||
#endif
|
||||
|
||||
#elif defined(__PSP__)
|
||||
|
||||
#include <dirent.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
/* map PSP names to posix. needs special scandir() function to mask rwx bits */
|
||||
#define d_type d_stat.st_attr
|
||||
#define DT_LNK FIO_SO_IFLNK
|
||||
#define DT_DIR FIO_SO_IFDIR
|
||||
#define DT_REG FIO_SO_IFREG
|
||||
#define DT_UNKNOWN 0
|
||||
|
||||
#else
|
||||
|
||||
#error "must provide posix"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user