david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/libgcc/__divdi3.c
Michael Brown 67f539fa80 [libgcc] Provide __divmoddi4()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2016-05-05 23:42:57 +01:00

11 lines
154 B
C

/*
* arch/i386/libgcc/__divdi3.c
*/
#include "libgcc.h"
__libgcc int64_t __divdi3(int64_t num, int64_t den)
{
return __divmoddi4(num, den, NULL);
}