fn unameWasi(uts: *std.c.utsname) callconv(.c) c_int
fn unameWasi(uts: *std.c.utsname) callconv(.c) c_int { // note the @bitCast's for NUL termination! uts.sysname[0..5].* = @bitCast("wasi".*); uts.nodename[0..7].* = @bitCast("(none)".*); uts.release[0..6].* = @bitCast("0.0.0".*); uts.version[0..6].* = @bitCast("0.0.0".*); uts.machine[0..7].* = @bitCast(switch (builtin.target.cpu.arch) { .wasm32 => "wasm32", .wasm64 => "wasm64", else => comptime unreachable, }.*); uts.domainname[0..7].* = @bitCast("(none)".*); return 0; }