mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
13 lines
305 B
Zig
13 lines
305 B
Zig
|
const common = @import("./common.zig");
|
||
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
||
|
|
||
|
pub const panic = common.panic;
|
||
|
|
||
|
comptime {
|
||
|
@export(__floatdixf, .{ .name = "__floatdixf", .linkage = common.linkage });
|
||
|
}
|
||
|
|
||
|
fn __floatdixf(a: i64) callconv(.C) f80 {
|
||
|
return intToFloat(f80, a);
|
||
|
}
|