mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
12 lines
231 B
Zig
12 lines
231 B
Zig
|
const common = @import("./common.zig");
|
||
|
|
||
|
pub const panic = common.panic;
|
||
|
|
||
|
comptime {
|
||
|
@export(__negxf2, .{ .name = "__negxf2", .linkage = common.linkage });
|
||
|
}
|
||
|
|
||
|
fn __negxf2(a: f80) callconv(.C) f80 {
|
||
|
return common.fneg(a);
|
||
|
}
|