zig/lib/std/special/compiler_rt/fixtfsi.zig
Andrew Kelley ed36dbbd9c
mv std/ lib/
that's all this commit does. further commits will fix cli flags and
such.

see #2221
2019-09-25 23:35:41 -04:00

12 lines
260 B
Zig

const fixint = @import("fixint.zig").fixint;
const builtin = @import("builtin");
pub extern fn __fixtfsi(a: f128) i32 {
@setRuntimeSafety(builtin.is_test);
return fixint(f128, i32, a);
}
test "import fixtfsi" {
_ = @import("fixtfsi_test.zig");
}