zig/lib/compiler_rt/neghf2.zig

12 lines
231 B
Zig
Raw Normal View History

const common = @import("./common.zig");
pub const panic = common.panic;
comptime {
@export(__neghf2, .{ .name = "__neghf2", .linkage = common.linkage });
}
fn __neghf2(a: f16) callconv(.C) f16 {
return common.fneg(a);
}