mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
13 lines
409 B
Zig
13 lines
409 B
Zig
const common = @import("./common.zig");
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi)
|
|
@export(&__negtf2, .{ .name = "__negkf2", .linkage = common.linkage, .visibility = common.visibility });
|
|
@export(&__negtf2, .{ .name = "__negtf2", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
fn __negtf2(a: f128) callconv(.c) f128 {
|
|
return common.fneg(a);
|
|
}
|