source: bootcd/isolinux/syslinux-6.03/gpxe/src/libgcc/__umoddi3.c @ e16e8f2

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

bootstuff

  • Property mode set to 100644
File size: 185 bytes
Line 
1/*
2 * arch/i386/libgcc/__umoddi3.c
3 */
4
5#include "libgcc.h"
6
7__libgcc uint64_t __umoddi3(uint64_t num, uint64_t den)
8{
9  uint64_t v;
10
11  (void) __udivmoddi4(num, den, &v);
12  return v;
13}
Note: See TracBrowser for help on using the repository browser.