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