std.c.utimensat: add const

This commit is contained in:
Andrew Kelley 2025-12-15 15:33:52 -08:00
parent 16bd2e137e
commit 9407ad8516

View file

@ -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(