std.Target: Fix requiresLibC() for NetBSD.

This commit is contained in:
Alex Rønne Petersen 2025-05-13 01:01:40 +02:00
parent 3d6f83b331
commit 8a7d925d36
No known key found for this signature in database

View File

@ -708,7 +708,6 @@ pub const Os = struct {
pub fn requiresLibC(os: Os) bool {
return switch (os.tag) {
.aix,
.netbsd,
.driverkit,
.macos,
.ios,
@ -726,6 +725,7 @@ pub const Os = struct {
.linux,
.windows,
.freebsd,
.netbsd,
.freestanding,
.fuchsia,
.ps3,