2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const comparef = @import("./comparef.zig");
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__gexf2, .{ .name = "__gexf2", .linkage = common.linkage, .visibility = common.visibility });
|
|
|
|
@export(__gtxf2, .{ .name = "__gtxf2", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn __gexf2(a: f80, b: f80) callconv(.C) i32 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return @intFromEnum(comparef.cmp_f80(comparef.GE, a, b));
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn __gtxf2(a: f80, b: f80) callconv(.C) i32 {
|
|
|
|
return __gexf2(a, b);
|
|
|
|
}
|