您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }