gecko-dev/tools/reorder/mult.c

5 lines
45 B
C
Raw Normal View History

2001-12-01 01:07:39 +00:00
int mult(int a, int b)
{
return a * b;
}