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;
2424pub const STDERR_FILENO = 2;
2525
2626/// Special value used to indicate openat should use the current working directory
27pub const AT_FDCWD = 100;
27pub const AT_FDCWD = -100;
2828
2929/// Do not follow symbolic links
3030pub const AT_SYMLINK_NOFOLLOW = 0x100;