mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
13 lines
311 B
Zig
13 lines
311 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, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __absvdi2(a: i64) callconv(.C) i64 {
|
|
return absv(i64, a);
|
|
}
|