zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit db82c1b9820449f2d1e6ef54dd32ec3ffd3c583f (tree)
parent cd9a6fed4fe9e8e93268d2f1b3a7d55c5b35403d
Author: Al Hoang <3811822-hoanga@users.noreply.gitlab.com>
Date:   Fri, 25 Feb 2022 23:59:15 -0600

add constant for haiku

* re-enable zig build on haiku

Diffstat:
Mlib/std/c/haiku.zig | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/lib/std/c/haiku.zig b/lib/std/c/haiku.zig @@ -410,6 +410,12 @@ pub const MAP = struct { pub const NORESERVE = 0x10; }; +pub const MSF = struct { + pub const ASYNC = 1; + pub const INVALIDATE = 2; + pub const SYNC = 4; +}; + pub const W = struct { pub const NOHANG = 0x1; pub const UNTRACED = 0x2;