authorgravatar for leroycepearson@geemili.xyzLeRoyce Pearson <leroycepearson@geemili.xyz> 2020-03-17 20:54:06-06:00
committergravatar for leroycepearson@geemili.xyzLeRoyce Pearson <leroycepearson@geemili.xyz> 2020-03-17 20:54:38-06:00
log32c58250305540bf33b109f832956777e4bef73c
treeb6766b054231c6605d848c882ac89434398956d2
parentb773a8b175b6be130af2249f267e4113fdbf30ea

Match netbsd's flock fields with others


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

lib/std/os/bits/netbsd.zig+5-5
......@@ -23,11 +23,11 @@ pub const dl_phdr_info = extern struct {
2323};
2424
2525pub const Flock = extern struct {
26 start: off_t,
27 len: off_t,
28 pid: pid_t,
29 lock_type: i16,
30 whence: i16,
26 l_start: off_t,
27 l_len: off_t,
28 l_pid: pid_t,
29 l_type: i16,
30 l_whence: i16,
3131};
3232
3333pub const msghdr = extern struct {