| 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(&__absvsi2, "__absvsi2"); |
| 7 | } |
| 8 | |
| 9 | pub fn __absvsi2(a: i32) callconv(.c) i32 { |
| 10 | return absv(i32, a); |
| 11 | } |