home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / programi / gcc_9112.lzh / gnulib / umodsi3.c < prev   
Encoding:
C/C++ Source or Header  |  1991-10-09  |  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.