Commit 32c5825030

LeRoyce Pearson <leroycepearson@geemili.xyz>
2020-03-18 03:54:06
Match netbsd's flock fields with others
1 parent b773a8b
Changed files (1)
lib
std
os
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 {