Files
WrldBox/.tmp_zig/lib/zig/compiler_rt/truncxfsf2.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

11 lines
239 B
Zig

const trunc_f80 = @import("./truncf.zig").trunc_f80;
const symbol = @import("../compiler_rt.zig").symbol;
comptime {
symbol(&__truncxfsf2, "__truncxfsf2");
}
fn __truncxfsf2(a: f80) callconv(.c) f32 {
return trunc_f80(f32, a);
}