c: Include Os.Tag.other in the list of freestanding OSs.

This commit is contained in:
Alex Rønne Petersen 2024-11-08 11:54:57 +01:00
parent 9e1dd3dec2
commit 9904a3ac9d
No known key found for this signature in database

View File

@ -17,12 +17,8 @@ const is_wasm = switch (native_arch) {
.wasm32, .wasm64 => true,
else => false,
};
const is_msvc = switch (native_abi) {
.msvc => true,
else => false,
};
const is_freestanding = switch (native_os) {
.freestanding => true,
.freestanding, .other => true,
else => false,
};