home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / gnulib / normal / umodsi3.c < prev   
Encoding:
C/C++ Source or Header  |  1993-12-12  |  145 b   |  11 lines

  1. #include "common.h"
  2.  
  3. unsigned SItype
  4. __umodsi3 (a, b)
  5.      unsigned SItype a, b;
  6. {
  7.   unsigned SItype q, r;
  8.   divmodu (q, r, a, b);
  9.   return r;
  10. }
  11.