authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-09-12 12:42:59+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-12 13:15:50-04:00
log774f770056887c27418bd715136fe1fdc8806d7d
tree638386c2f22ded452701986480ede8823fdb162c
parentcf4bccf76566ac112f9142863c3e4dbf81e71d08

Correct AT_FDCWD definition


1 files changed, 1 insertions(+), 1 deletions(-)

std/os/bits/linux.zig+1-1
...@@ -24,7 +24,7 @@ pub const STDOUT_FILENO = 1;...@@ -24,7 +24,7 @@ pub const STDOUT_FILENO = 1;
24pub const STDERR_FILENO = 2;24pub const STDERR_FILENO = 2;
2525
26/// Special value used to indicate openat should use the current working directory26/// Special value used to indicate openat should use the current working directory
27pub const AT_FDCWD = 100;27pub const AT_FDCWD = -100;
2828
29/// Do not follow symbolic links29/// Do not follow symbolic links
30pub const AT_SYMLINK_NOFOLLOW = 0x100;30pub const AT_SYMLINK_NOFOLLOW = 0x100;