std.Target: Fix requiresLibC() for FreeBSD.

This commit is contained in:
Alex Rønne Petersen 2025-05-08 19:48:12 +02:00
parent ba9f2571b7
commit 46042170cb
No known key found for this signature in database

View File

@ -695,7 +695,6 @@ pub const Os = struct {
/// since this is the stable syscall interface.
pub fn requiresLibC(os: Os) bool {
return switch (os.tag) {
.freebsd,
.aix,
.netbsd,
.driverkit,
@ -714,6 +713,7 @@ pub const Os = struct {
.linux,
.windows,
.freebsd,
.freestanding,
.fuchsia,
.ps3,