You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__moddi3.c 178B

12345678910111213
  1. /*
  2. * arch/i386/libgcc/__moddi3.c
  3. */
  4. #include "libgcc.h"
  5. __libgcc int64_t __moddi3(int64_t num, int64_t den)
  6. {
  7. int64_t v;
  8. (void) __divmoddi4(num, den, &v);
  9. return v;
  10. }