mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
std.c.fstatat64: add noalias attributes
This commit is contained in:
parent
a62c8d36d5
commit
353121d9d5
@ -229,7 +229,7 @@ pub const EAI = enum(c_int) {
|
|||||||
pub extern "c" fn fallocate64(fd: fd_t, mode: c_int, offset: off_t, len: off_t) c_int;
|
pub extern "c" fn fallocate64(fd: fd_t, mode: c_int, offset: off_t, len: off_t) c_int;
|
||||||
pub extern "c" fn fopen64(noalias filename: [*:0]const u8, noalias modes: [*:0]const u8) ?*FILE;
|
pub extern "c" fn fopen64(noalias filename: [*:0]const u8, noalias modes: [*:0]const u8) ?*FILE;
|
||||||
pub extern "c" fn fstat64(fd: fd_t, buf: *Stat) c_int;
|
pub extern "c" fn fstat64(fd: fd_t, buf: *Stat) c_int;
|
||||||
pub extern "c" fn fstatat64(dirfd: fd_t, path: [*:0]const u8, stat_buf: *Stat, flags: u32) c_int;
|
pub extern "c" fn fstatat64(dirfd: fd_t, noalias path: [*:0]const u8, noalias stat_buf: *Stat, flags: u32) c_int;
|
||||||
pub extern "c" fn ftruncate64(fd: c_int, length: off_t) c_int;
|
pub extern "c" fn ftruncate64(fd: c_int, length: off_t) c_int;
|
||||||
pub extern "c" fn getrlimit64(resource: rlimit_resource, rlim: *rlimit) c_int;
|
pub extern "c" fn getrlimit64(resource: rlimit_resource, rlim: *rlimit) c_int;
|
||||||
pub extern "c" fn lseek64(fd: fd_t, offset: i64, whence: c_int) i64;
|
pub extern "c" fn lseek64(fd: fd_t, offset: i64, whence: c_int) i64;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user