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