12 lines
130 B
C
12 lines
130 B
C
|
/* Simple shared library */
|
||
|
|
||
|
int square(int num)
|
||
|
{
|
||
|
return multiply(num, num);
|
||
|
}
|
||
|
|
||
|
int multiply(int a, int b)
|
||
|
{
|
||
|
return a * b;
|
||
|
}
|