Files
WrldBox/.tmp_zig/lib/zig/compiler_rt/gexf2.zig
swim67667 c17dfc94ce
Some checks failed
Build Project / build (ubuntu-latest) (push) Failing after 12m33s
added multi-compiling stuff (only works on my mac for now)
2026-06-28 16:40:20 -04:00

16 lines
363 B
Zig

const symbol = @import("../compiler_rt.zig").symbol;
const comparef = @import("./comparef.zig");
comptime {
symbol(&__gexf2, "__gexf2");
symbol(&__gtxf2, "__gtxf2");
}
fn __gexf2(a: f80, b: f80) callconv(.c) i32 {
return @intFromEnum(comparef.cmp_f80(comparef.GE, a, b));
}
fn __gtxf2(a: f80, b: f80) callconv(.c) i32 {
return __gexf2(a, b);
}