We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3214095 commit d1fbbb1Copy full SHA for d1fbbb1
1 file changed
druntime/src/core/sys/posix/sys/stat.d
@@ -2030,10 +2030,12 @@ else version (Darwin)
2030
int stat(const scope char*, stat_t*);
2031
}
2032
int fchmodat(int, const scope char*, mode_t, int);
2033
- int futimens(int, ref const(timespec)[2]);
2034
int mkdirat(int, const scope char*, mode_t);
2035
- int mkfifoat(int, const scope char*, mode_t);
2036
- int utimensat(int, const scope char*, ref const(timespec)[2], int);
+ // OSX available starting 10.12
+ //int futimens(int, ref const(timespec)[2]);
+ //int utimensat(int, const scope char*, ref const(timespec)[2], int);
2037
+ // OSX available starting 13
2038
+ //int mkfifoat(int, const scope char*, mode_t);
2039
2040
else version (FreeBSD)
2041
{
0 commit comments