Commit 71c86e1d28

Andrew Kelley <andrew@ziglang.org>
2025-10-20 07:36:14
std.posix: fix compilation on wasm32-freestanding
1 parent 894cb5a
Changed files (1)
lib
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;
     },
 };