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