blob: e91a26820ba9d548b9c81c281415e3b28050f7c3 [file] [log] [blame]
typedef unsigned short UShort;
UShort mul16 ( UShort a, UShort b );
int main ( int argc, char** argv )
{
UShort x = mul16 ( 10, 20 );
return ((int)x) - 200;
}
UShort mul16 ( UShort a, UShort b )
{
return a * b;
}