authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-04-28 12:52:03+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-04-28 12:52:03+01:00
logce198b7c28e89c0bb502d215f9f9de99abb25f08
tree0da150b916f02eabde8264532324a8a59d9cf8f3
parent89ed51bf5360f9abf07024e0a9f6c10382fbb624
signaturelock-open Commit is signed but in an unrecognized format.

std.c: fix Haiku definition of `MSF`


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

lib/std/c.zig+2-2
...@@ -1664,12 +1664,12 @@ pub const MSF = switch (native_os) {...@@ -1664,12 +1664,12 @@ pub const MSF = switch (native_os) {
1664 pub const ASYNC = 1;1664 pub const ASYNC = 1;
1665 pub const INVALIDATE = 2;1665 pub const INVALIDATE = 2;
1666 },1666 },
1667 .openbsd => struct {1667 .openbsd, .haiku => struct {
1668 pub const ASYNC = 1;1668 pub const ASYNC = 1;
1669 pub const SYNC = 2;1669 pub const SYNC = 2;
1670 pub const INVALIDATE = 4;1670 pub const INVALIDATE = 4;
1671 },1671 },
1672 .haiku, .netbsd, .illumos => struct {1672 .netbsd, .illumos => struct {
1673 pub const ASYNC = 1;1673 pub const ASYNC = 1;
1674 pub const INVALIDATE = 2;1674 pub const INVALIDATE = 2;
1675 pub const SYNC = 4;1675 pub const SYNC = 4;