@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/std/process.zig +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zigc/lib",
3
- "version": "0.17.0-dev.304",
3
+ "version": "0.17.0-dev.305",
4
4
  "description": "Zig standard library and libc headers (shared across all platforms)",
5
5
  "repository": {
6
6
  "type": "git",
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
  }