mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
10 lines
217 B
Zig
10 lines
217 B
Zig
const symbol = @import("../compiler_rt.zig").symbol;
|
|
const absv = @import("./absv.zig").absv;
|
|
|
|
comptime {
|
|
symbol(&__absvdi2, "__absvdi2");
|
|
}
|
|
|
|
pub fn __absvdi2(a: i64) callconv(.c) i64 {
|
|
return absv(i64, a);
|
|
}
|