diff --git a/lib/std/c.zig b/lib/std/c.zig index 656bdc35bbf02199c6a71ed2cab60f025b7cb0c4..30a3ac132c44a258e8544afd5fa8ef9dde552270 100644 --- a/lib/std/c.zig +++ b/lib/std/c.zig @@ -10740,7 +10740,7 @@ pub extern "c" fn free(?*anyopaque) void; pub extern "c" fn futimes(fd: fd_t, times: ?*[2]timeval) c_int; pub extern "c" fn utimes(path: [*:0]const u8, times: ?*[2]timeval) c_int; -pub extern "c" fn utimensat(dirfd: fd_t, pathname: [*:0]const u8, times: ?*[2]timespec, flags: u32) c_int; +pub extern "c" fn utimensat(dirfd: fd_t, pathname: [*:0]const u8, times: ?*const [2]timespec, flags: u32) c_int; pub extern "c" fn futimens(fd: fd_t, times: ?*const [2]timespec) c_int; pub extern "c" fn pthread_create(