source: bootcd/isolinux/syslinux-6.03/gpxe/src/libgcc/__udivdi3.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 159 bytes
RevLine 
[e16e8f2]1/*
2 * arch/i386/libgcc/__divdi3.c
3 */
4
5#include "libgcc.h"
6
7__libgcc uint64_t __udivdi3(uint64_t num, uint64_t den)
8{
9  return __udivmoddi4(num, den, NULL);
10}
Note: See TracBrowser for help on using the repository browser.