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
150 B
C
11 lines
150 B
C
/*
|
|
* arch/i386/libgcc/__divdi3.c
|
|
*/
|
|
|
|
#include "libgcc.h"
|
|
|
|
uint64_t __udivdi3(uint64_t num, uint64_t den)
|
|
{
|
|
return __udivmoddi4(num, den, NULL);
|
|
}
|