| author | |
| committer | |
| log | 20b19d0092a70999ff58a0f8969e64ec4ecf6c2e |
| tree | 87d05e7307a83ccb466c676c2b9c5faec476fedb |
| parent | e4bc595bc6f4ffbfadf132778c4ca635e8e6f3e3 |
1 files changed, 11 insertions(+), 1 deletions(-)
lib/std/os/bits/openbsd.zig+11-1| ... | ... | @@ -203,7 +203,17 @@ pub const libc_stat = extern struct { |
| 203 | 203 | |
| 204 | 204 | pub const timespec = extern struct { |
| 205 | 205 | tv_sec: time_t, |
| 206 | tv_nsec: isize, | |
| 206 | tv_nsec: c_long, | |
| 207 | }; | |
| 208 | ||
| 209 | pub const timeval = extern struct { | |
| 210 | tv_sec: time_t, | |
| 211 | tv_usec: c_long, | |
| 212 | }; | |
| 213 | ||
| 214 | pub const timezone = extern struct { | |
| 215 | tz_minuteswest: c_int, | |
| 216 | tz_dsttime: c_int, | |
| 207 | 217 | }; |
| 208 | 218 | |
| 209 | 219 | pub const MAXNAMLEN = 255; |