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(__absvsi2, .{ .name = "__absvsi2", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __absvsi2(a: i32) callconv(.C) i32 {
|
|
return absv(i32, a);
|
|
}
|