1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* SPDX-License-Identifier: GPL-2.0 */ #include "libgcc.h" #if BITS_PER_LONG == 32 #include <div64.h> long long __udivdi3(long long u, word_type b) { long long ret = u; __div64_32(&ret, b); return ret; } #endif /* BITS_PER_LONG == 32 */