1 2 3 4 5 6 7 8 9 10 11 12
const common = @import("./common.zig"); const intFromFloat = @import("./int_from_float.zig").intFromFloat; pub const panic = common.panic; comptime { @export(&__fixunshfsi, .{ .name = "__fixunshfsi", .linkage = common.linkage, .visibility = common.visibility }); } fn __fixunshfsi(a: f16) callconv(.c) u32 { return intFromFloat(u32, a); }