aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/negxf2.zig
blob: 4e8258453bc29943ca35b2a04137e1f70df9234b (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
}