diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index 4fa8a02d3d..5c81ee8c06 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -775,6 +775,9 @@ pub fn S_ISSOCK(m: u32) bool { return m & S_IFMT == S_IFSOCK; } +pub const UTIME_NOW = 0x3fffffff; +pub const UTIME_OMIT = 0x3ffffffe; + pub const TFD_NONBLOCK = O_NONBLOCK; pub const TFD_CLOEXEC = O_CLOEXEC;