mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
13 lines
277 B
Zig
13 lines
277 B
Zig
const common = @import("./common.zig");
|
|
const absv = @import("./absv.zig").absv;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(__absvdi2, .{ .name = "__absvdi2", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __absvdi2(a: i64) callconv(.C) i64 {
|
|
return absv(i64, a);
|
|
}
|