mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
git-svn-id: svn://coreboot.org/openbios/openbios-devel@192 f158a5a8-5612-0410-a976-696ce0be7e32
11 lines
159 B
C
11 lines
159 B
C
/*
|
|
* arch/i386/libgcc/__divdi3.c
|
|
*/
|
|
|
|
#include "libgcc.h"
|
|
|
|
__uint128_t __udivti3(__uint128_t num, __uint128_t den)
|
|
{
|
|
return __udivmodti4(num, den, NULL);
|
|
}
|