home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
GCC
/
GERLIB_DEV08B.LHA
/
gerlib
/
gnulib
/
normal
/
mulsi3.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-12
|
204 b
|
16 lines
#include "common.h"
SItype
__mulsi3 (a, b)
SItype a,b;
{
int neg = (a < 0) != (b < 0);
SItype res;
if (a < 0) a = -a;
if (b < 0) b = -b;
res = mulu (a,b);
return neg ? -res : res;
}