Match netbsd's flock fields with others

This commit is contained in:
LeRoyce Pearson 2020-03-17 20:54:06 -06:00
parent b773a8b175
commit 32c5825030

View File

@ -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 {