mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
11 lines
265 B
Zig
11 lines
265 B
Zig
const common = @import("./common.zig");
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(&__neghf2, .{ .name = "__neghf2", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
fn __neghf2(a: f16) callconv(.c) f16 {
|
|
return common.fneg(a);
|
|
}
|