zig/std/special/compiler_rt/fixunsdfdi.zig
Andrew Kelley 6a98bf3dba compiler_rt implementations for __fixuns* functions
* add u128 and i128 integer types
 * add f128 floating point type
 * implement big integer multiplication (See #405)
2017-08-16 19:07:35 -04:00

11 lines
195 B
Zig

const fixuint = @import("fixuint.zig").fixuint;
export fn __fixunsdfdi(a: f64) -> u64 {
return fixuint(f64, u64, a);
}
test "import fixunsdfdi" {
_ = @import("fixunsdfdi_test.zig");
}