zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c5a4177140f417b80c3d2e86f247ee5af769a39a (tree)
parent bbd90a562efd6e802ed41df2649a05fad763a4de
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Tue,  9 Jul 2024 18:17:01 -0700

std.os.linux: add AT.HANDLE_FID

Diffstat:
Mlib/std/os/linux.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig @@ -2946,6 +2946,8 @@ pub const AT = struct { /// Apply to the entire subtree pub const RECURSIVE = 0x8000; + + pub const HANDLE_FID = REMOVEDIR; }; pub const FALLOC = struct {