mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
ec95e00e28
stage2: change logic for detecting whether the main package is inside the std package. Previously it relied on realpath() which is not portable. This uses resolve() which is how imports already work. * stage2: fix cleanup bug when creating Module * flatten lib/std/special/* to lib/* - this was motivated by making main_pkg_is_inside_std false for compiler_rt & friends. * rename "mini libc" to "universal libc"
14 lines
453 B
Zig
14 lines
453 B
Zig
const udivmodti4 = @import("udivmodti4.zig");
|
|
const builtin = @import("builtin");
|
|
|
|
pub fn __udivti3(a: u128, b: u128) callconv(.C) u128 {
|
|
@setRuntimeSafety(builtin.is_test);
|
|
return udivmodti4.__udivmodti4(a, b, null);
|
|
}
|
|
|
|
const v128 = @import("std").meta.Vector(2, u64);
|
|
pub fn __udivti3_windows_x86_64(a: v128, b: v128) callconv(.C) v128 {
|
|
@setRuntimeSafety(builtin.is_test);
|
|
return udivmodti4.__udivmodti4_windows_x86_64(a, b, null);
|
|
}
|