| author | |
| committer | |
| log | d18f1dde4109a5da3425ae9eb837f721bc771653 |
| tree | 4337bbbbd7a2de0e4a9881480ca3076b395c9d8c |
| parent | 798f6b85e3aa1dddb5da570e948ad94b1312c0e5 |
Otherwise, the field names in std.posix.timeval vary by target os.
I think this was an accidental change during the work of #256101 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/linux.zig+2-2| ... | @@ -8429,8 +8429,8 @@ pub const POSIX_FADV = switch (native_arch) { | ... | @@ -8429,8 +8429,8 @@ pub const POSIX_FADV = switch (native_arch) { |
| 8429 | }; | 8429 | }; |
| 8430 | 8430 | ||
| 8431 | pub const timeval = extern struct { | 8431 | pub const timeval = extern struct { |
| 8432 | tv_sec: isize, | 8432 | sec: isize, |
| 8433 | tv_usec: i64, | 8433 | usec: i64, |
| 8434 | }; | 8434 | }; |
| 8435 | 8435 | ||
| 8436 | pub const timezone = extern struct { | 8436 | pub const timezone = extern struct { |