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) {
16641664 pub const ASYNC = 1;
16651665 pub const INVALIDATE = 2;
16661666 },
1667 .openbsd => struct {
1667 .openbsd, .haiku => struct {
16681668 pub const ASYNC = 1;
16691669 pub const SYNC = 2;
16701670 pub const INVALIDATE = 4;
16711671 },
1672 .haiku, .netbsd, .illumos => struct {
1672 .netbsd, .illumos => struct {
16731673 pub const ASYNC = 1;
16741674 pub const INVALIDATE = 2;
16751675 pub const SYNC = 4;