Function isGnuLibC [src]
Prototype
pub inline fn isGnuLibC(target: Target) bool
Parameters
target: Target
Source
pub inline fn isGnuLibC(target: Target) bool {
return switch (target.os.tag) {
.hurd, .linux => target.abi.isGnu(),
else => false,
};
}