mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.c.utimensat: add const
This commit is contained in:
parent
16bd2e137e
commit
9407ad8516
1 changed files with 1 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue