zig/lib/compiler_rt/neghf2.zig
2025-03-05 03:01:43 +00:00

12 lines
265 B
Zig

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