From f995c1b08ab72897cadbb6a365fb04afb8ea9ca1 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 12 Feb 2024 01:05:50 -0700 Subject: [PATCH] std.c.O: fix illumos regression introduced in c3eb592a343d25bbb0f79b80104d7890877c7af6 --- lib/std/c.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/c.zig b/lib/std/c.zig index 522f0beb9e..0ee029ddfc 100644 --- a/lib/std/c.zig +++ b/lib/std/c.zig @@ -368,7 +368,7 @@ pub const O = switch (native_os) { write: bool = false, _: u3 = 0, }, - .solaris => packed struct(u32) { + .solaris, .illumos => packed struct(u32) { ACCMODE: std.os.ACCMODE = .RDONLY, NDELAY: bool = false, APPEND: bool = false,