mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
13 lines
341 B
Zig
13 lines
341 B
Zig
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(&__fixxfdi, .{ .name = "__fixxfdi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
fn __fixxfdi(a: f80) callconv(.C) i64 {
|
|
return intFromFloat(i64, a);
|
|
}
|