@zigc/lib 0.17.0-dev.304 → 0.17.0-dev.305
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/std/process.zig +1 -1
package/package.json
CHANGED
package/std/process.zig
CHANGED
|
@@ -846,7 +846,7 @@ pub fn abort() noreturn {
|
|
|
846
846
|
exit(127); // Pid 1 might not be signalled in some containers.
|
|
847
847
|
}
|
|
848
848
|
switch (native_os) {
|
|
849
|
-
.uefi, .wasi, .emscripten, .cuda, .amdhsa => @trap(),
|
|
849
|
+
.uefi, .wasi, .emscripten, .cuda, .amdhsa, .other, .freestanding => @trap(),
|
|
850
850
|
else => posix.system.abort(),
|
|
851
851
|
}
|
|
852
852
|
}
|