zig/lib/compiler_rt/absvti2.zig
2026-01-04 00:27:08 -08:00

10 lines
281 B
Zig

const common = @import("./common.zig");
const absv = @import("./absv.zig").absv;
comptime {
@export(&__absvti2, .{ .name = "__absvti2", .linkage = common.linkage, .visibility = common.visibility });
}
pub fn __absvti2(a: i128) callconv(.c) i128 {
return absv(i128, a);
}