mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 10:05:10 +01:00
10 lines
253 B
Zig
10 lines
253 B
Zig
const symbol = @import("../compiler_rt.zig").symbol;
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
comptime {
|
|
symbol(&__floatdixf, "__floatdixf");
|
|
}
|
|
|
|
fn __floatdixf(a: i64) callconv(.c) f80 {
|
|
return floatFromInt(f80, a);
|
|
}
|