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