diff options
Diffstat (limited to 'roms/ipxe/src/libgcc/__divdi3.c')
-rw-r--r-- | roms/ipxe/src/libgcc/__divdi3.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roms/ipxe/src/libgcc/__divdi3.c b/roms/ipxe/src/libgcc/__divdi3.c new file mode 100644 index 000000000..224bb69c7 --- /dev/null +++ b/roms/ipxe/src/libgcc/__divdi3.c @@ -0,0 +1,10 @@ +/* + * arch/i386/libgcc/__divdi3.c + */ + +#include "libgcc.h" + +__libgcc int64_t __divdi3(int64_t num, int64_t den) +{ + return __divmoddi4(num, den, NULL); +} |