mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 08:33:06 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
13 lines
346 B
Zig
13 lines
346 B
Zig
const common = @import("./common.zig");
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(__floatsixf, .{ .name = "__floatsixf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
fn __floatsixf(a: i32) callconv(.C) f80 {
|
|
return floatFromInt(f80, a);
|
|
}
|