master
1const common = @import("./common.zig");
2const trunc_f80 = @import("./truncf.zig").trunc_f80;
3
4pub const panic = common.panic;
5
6comptime {
7 @export(&__truncxfsf2, .{ .name = "__truncxfsf2", .linkage = common.linkage, .visibility = common.visibility });
8}
9
10fn __truncxfsf2(a: f80) callconv(.c) f32 {
11 return trunc_f80(f32, a);
12}