Correct std.os.emscripten.W.STOPSIG return type

This commit is contained in:
Carl Åstholm
2026-04-13 22:27:24 +02:00
committed by Alex Rønne Petersen
parent 3016f875c3
commit 046002d1a5
+1 -1
View File
@@ -211,7 +211,7 @@ pub const W = struct {
pub fn TERMSIG(s: u32) SIG {
return @enumFromInt(s & 0x7f);
}
pub fn STOPSIG(s: u32) u32 {
pub fn STOPSIG(s: u32) SIG {
return @enumFromInt(EXITSTATUS(s));
}
pub fn IFEXITED(s: u32) bool {