zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 32c58250305540bf33b109f832956777e4bef73c (tree)
parent b773a8b175b6be130af2249f267e4113fdbf30ea
Author: LeRoyce Pearson <leroycepearson@geemili.xyz>
Date:   Tue, 17 Mar 2020 20:54:06 -0600

Match netbsd's flock fields with others

Diffstat:
Mlib/std/os/bits/netbsd.zig | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/std/os/bits/netbsd.zig b/lib/std/os/bits/netbsd.zig @@ -23,11 +23,11 @@ pub const dl_phdr_info = extern struct { }; pub const Flock = extern struct { - start: off_t, - len: off_t, - pid: pid_t, - lock_type: i16, - whence: i16, + l_start: off_t, + l_len: off_t, + l_pid: pid_t, + l_type: i16, + l_whence: i16, }; pub const msghdr = extern struct {