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.

__divdi3.c 154B

12345678910
  1. /*
  2. * arch/i386/libgcc/__divdi3.c
  3. */
  4. #include "libgcc.h"
  5. __libgcc int64_t __divdi3(int64_t num, int64_t den)
  6. {
  7. return __divmoddi4(num, den, NULL);
  8. }