mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 19:09:58 +08:00
22 lines
153 B
C
22 lines
153 B
C
|
|
|
|
short
|
|
__mulhi3(short a, short b)
|
|
{
|
|
int r;
|
|
|
|
r = 0;
|
|
while (a)
|
|
{
|
|
if (a & 1)
|
|
{
|
|
r += b;
|
|
a>>=1;
|
|
b<<=1;
|
|
}
|
|
}
|
|
return r;
|
|
}
|
|
|
|
|