mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-03-14 09:45:42 +00:00
ios: fix running in simulator (#5704)
This commit is contained in:
parent
8b030075d7
commit
1ddf7a62ad
1 changed files with 9 additions and 0 deletions
|
@ -21,4 +21,13 @@ DIR *opendir$INODE64(const char *name) {
|
|||
return opendir(name);
|
||||
}
|
||||
|
||||
int readdir$INODE64(DIR *restrict dirp, struct dirent *restrict entry,
|
||||
struct dirent **restrict result) {
|
||||
return readdir_r(dirp, entry, result);
|
||||
}
|
||||
|
||||
DIR *fdopendir$INODE64(const char *name) {
|
||||
return opendir(name);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue