zig/std/special/compiler_rt/fixunstfdi.zig

10 lines
196 B
Zig
Raw Normal View History

const fixuint = @import("fixuint.zig").fixuint;
export fn __fixunstfdi(a: f128) -> u64 {
return fixuint(f128, u64, a);
}
test "import fixunstfdi" {
_ = @import("fixunstfdi_test.zig");
}