From ce198b7c28e89c0bb502d215f9f9de99abb25f08 Mon Sep 17 00:00:00 2001 From: Matthew Lugg Date: Tue, 28 Apr 2026 12:52:03 +0100 Subject: [PATCH] std.c: fix Haiku definition of `MSF` --- lib/std/c.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/c.zig b/lib/std/c.zig index 387f4a8791fda5e3dc0fd451674b43dbed32e395..99cda801cdca976086fbd0fbe0fe359c0a073eda 100644 --- a/lib/std/c.zig +++ b/lib/std/c.zig @@ -1664,12 +1664,12 @@ pub const MSF = switch (native_os) { pub const ASYNC = 1; pub const INVALIDATE = 2; }, - .openbsd => struct { + .openbsd, .haiku => struct { pub const ASYNC = 1; pub const SYNC = 2; pub const INVALIDATE = 4; }, - .haiku, .netbsd, .illumos => struct { + .netbsd, .illumos => struct { pub const ASYNC = 1; pub const INVALIDATE = 2; pub const SYNC = 4; -- 2.54.0