| author | |
| committer | |
| log | e949341b705c16b46544f26f5aab0a16670f42b4 |
| tree | 9dc6a4a556065f3ea0aa6ddbae2b00d727cc61db |
| parent | 36069a2a7dbd1a3b38ecfced917733127d7dbb38 |
| signature |
This reverts commit af88310caf86b1b1e84d9f0764af522b402241b2.
I conflated __kernel_timespec with __kernel_old_timespec. i64 is correct.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/os/linux.zig+1-1| ... | ... | @@ -9438,7 +9438,7 @@ pub const timezone = extern struct { |
| 9438 | 9438 | /// The timespec struct used by the kernel. |
| 9439 | 9439 | pub const kernel_timespec = extern struct { |
| 9440 | 9440 | sec: i64, |
| 9441 | nsec: isize, | |
| 9441 | nsec: i64, | |
| 9442 | 9442 | |
| 9443 | 9443 | /// For use with `utimensat` and `futimens`. |
| 9444 | 9444 | pub const NOW: timespec = .{ |