mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 07:04:50 +01:00
10 lines
220 B
Zig
10 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);
|
|
}
|