Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion druntime/src/core/sys/posix/sys/stat.d
Original file line number Diff line number Diff line change
Expand Up @@ -2008,24 +2008,26 @@ else version (Darwin)
version (AArch64)
{
int fstat(int, stat_t*);
int fstatat(int, const scope char*, stat_t*, int);
int lstat(const scope char*, stat_t*);
int stat(const scope char*, stat_t*);
}
else
{
pragma(mangle, "fstat$INODE64") int fstat(int, stat_t*);
pragma(mangle, "fstatat$INODE64") int fstatat(int, const scope char*, stat_t*, int);
pragma(mangle, "lstat$INODE64") int lstat(const scope char*, stat_t*);
pragma(mangle, "stat$INODE64") int stat(const scope char*, stat_t*);
}
}
else
{
int fstat(int, stat_t*);
int fstatat(int, const scope char*, stat_t*, int);
int lstat(const scope char*, stat_t*);
int stat(const scope char*, stat_t*);
}
int fchmodat(int, const scope char*, mode_t, int);
int fstatat(int, const scope char*, stat_t*, int);
int futimens(int, ref const(timespec)[2]);
int mkdirat(int, const scope char*, mode_t);
int mkfifoat(int, const scope char*, mode_t);
Expand Down
Loading