authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-09-09 11:47:14-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-14 14:26:02-07:00
log353121d9d57d9dfcd734cd3b4b65d826f7eb00ee
tree08e2b3ea74d5a4230fd3584a74188f5c1da9b441
parenta62c8d36d530dc78f88dc0f41ce3f244c3c273bd

std.c.fstatat64: add noalias attributes


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/c/linux.zig+1-1
...@@ -229,7 +229,7 @@ pub const EAI = enum(c_int) {...@@ -229,7 +229,7 @@ pub const EAI = enum(c_int) {
229pub extern "c" fn fallocate64(fd: fd_t, mode: c_int, offset: off_t, len: off_t) c_int;229pub extern "c" fn fallocate64(fd: fd_t, mode: c_int, offset: off_t, len: off_t) c_int;
230pub extern "c" fn fopen64(noalias filename: [*:0]const u8, noalias modes: [*:0]const u8) ?*FILE;230pub extern "c" fn fopen64(noalias filename: [*:0]const u8, noalias modes: [*:0]const u8) ?*FILE;
231pub extern "c" fn fstat64(fd: fd_t, buf: *Stat) c_int;231pub extern "c" fn fstat64(fd: fd_t, buf: *Stat) c_int;
232pub extern "c" fn fstatat64(dirfd: fd_t, path: [*:0]const u8, stat_buf: *Stat, flags: u32) c_int;232pub extern "c" fn fstatat64(dirfd: fd_t, noalias path: [*:0]const u8, noalias stat_buf: *Stat, flags: u32) c_int;
233pub extern "c" fn ftruncate64(fd: c_int, length: off_t) c_int;233pub extern "c" fn ftruncate64(fd: c_int, length: off_t) c_int;
234pub extern "c" fn getrlimit64(resource: rlimit_resource, rlim: *rlimit) c_int;234pub extern "c" fn getrlimit64(resource: rlimit_resource, rlim: *rlimit) c_int;
235pub extern "c" fn lseek64(fd: fd_t, offset: i64, whence: c_int) i64;235pub extern "c" fn lseek64(fd: fd_t, offset: i64, whence: c_int) i64;