1const compiler_rt = @import("../compiler_rt.zig");
2const symbol = compiler_rt.symbol;
3const absv = @import("absv.zig").absv;
4
5comptime {
6 symbol(&__absvti2, "__absvti2");
7}
8
9pub fn __absvti2(a: i128) callconv(.c) i128 {
10 return absv(i128, a);
11}