Files
WrldBox/.tmp_zig/lib/zig/compiler_rt/absvti2.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
220 B
Zig

const symbol = @import("../compiler_rt.zig").symbol;
const absv = @import("./absv.zig").absv;
comptime {
symbol(&__absvti2, "__absvti2");
}
pub fn __absvti2(a: i128) callconv(.c) i128 {
return absv(i128, a);
}