| ... | ... | @@ -1060,7 +1060,7 @@ pub fn rename(old: [*:0]const u8, new: [*:0]const u8) usize { |
| 1060 | 1060 | } |
| 1061 | 1061 | } |
| 1062 | 1062 | |
| 1063 | | pub fn renameat(oldfd: i32, oldpath: [*]const u8, newfd: i32, newpath: [*]const u8) usize { |
| 1063 | pub fn renameat(oldfd: i32, oldpath: [*:0]const u8, newfd: i32, newpath: [*:0]const u8) usize { |
| 1064 | 1064 | if (@hasField(SYS, "renameat")) { |
| 1065 | 1065 | return syscall4( |
| 1066 | 1066 | .renameat, |
| ... | ... | @@ -1819,7 +1819,7 @@ pub fn fstatat(dirfd: i32, path: [*:0]const u8, stat_buf: *Stat, flags: u32) usi |
| 1819 | 1819 | } |
| 1820 | 1820 | } |
| 1821 | 1821 | |
| 1822 | | pub fn statx(dirfd: i32, path: [*]const u8, flags: u32, mask: u32, statx_buf: *Statx) usize { |
| 1822 | pub fn statx(dirfd: i32, path: [*:0]const u8, flags: u32, mask: u32, statx_buf: *Statx) usize { |
| 1823 | 1823 | if (@hasField(SYS, "statx")) { |
| 1824 | 1824 | return syscall5( |
| 1825 | 1825 | .statx, |