Function isFreeBSDLibC [src]

Prototype

pub inline fn isFreeBSDLibC(target: *const Target) bool

Parameters

target: *const Target

Source

pub inline fn isFreeBSDLibC(target: *const Target) bool { return switch (target.abi) { .none, .eabihf => target.os.tag == .freebsd, else => false, }; }