master
 1const common = @import("./common.zig");
 2const comparef = @import("./comparef.zig");
 3
 4pub const panic = common.panic;
 5
 6comptime {
 7    @export(&__unordxf2, .{ .name = "__unordxf2", .linkage = common.linkage, .visibility = common.visibility });
 8}
 9
10pub fn __unordxf2(a: f80, b: f80) callconv(.c) i32 {
11    return comparef.unordcmp(f80, a, b);
12}