mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 06:44:50 +01:00
9 lines
232 B
Zig
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);
|
|
}
|