home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
programm
/
programi
/
gcc_9112.lzh
/
gnulib
/
umodsi3.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-10-09
|
145 b
|
11 lines
#include "common.h"
unsigned SItype
__umodsi3 (a, b)
unsigned SItype a, b;
{
unsigned SItype q, r;
divmodu (q, r, a, b);
return r;
}