zig/std/special/compiler_rt/udivmodti4.zig

10 lines
234 B
Zig
Raw Normal View History

2017-08-19 05:20:03 +08:00
const udivmod = @import("udivmod.zig").udivmod;
export fn __udivmodti4(a: u128, b: u128, maybe_rem: ?&u128) -> u128 {
2017-08-19 05:20:03 +08:00
return udivmod(u128, a, b, maybe_rem);
}
test "import udivmodti4" {
_ = @import("udivmodti4_test.zig");
}