zig/lib/compiler_rt/negxf2.zig
2026-01-04 00:27:08 -08:00

9 lines
232 B
Zig

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