mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
Correct std.os.emscripten.W.STOPSIG return type
This commit is contained in:
committed by
Alex Rønne Petersen
parent
3016f875c3
commit
046002d1a5
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user