commit 71c86e1d28b0205a3417f93a41b794f656625355 (tree)
parent 894cb5a1fc51e457065d2ec8820863a00e7d96e4
Author: Andrew Kelley <andrew@ziglang.org>
Date: Sun, 19 Oct 2025 22:36:14 -0700
std.posix: fix compilation on wasm32-freestanding
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/std/posix.zig b/lib/std/posix.zig
@@ -52,6 +52,8 @@ else switch (native_os) {
pub const fd_t = void;
pub const uid_t = void;
pub const gid_t = void;
+ pub const mode_t = void;
+ pub const ino_t = void;
},
};