zig/lib/compiler_rt/negxf2.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(&__negxf2, .{ .name = "__negxf2", .linkage = common.linkage, .visibility = common.visibility });
}
fn __negxf2(a: f80) callconv(.c) f80 {
return common.fneg(a);
}