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(&__fixhfsi, .{ .name = "__fixhfsi", .linkage = common.linkage, .visibility = common.visibility }); } fn __fixhfsi(a: f16) callconv(.c) i32 { return intFromFloat(i32, a); }