8 lines
61 B
C
8 lines
61 B
C
|
extern int test (int);
|
||
|
|
||
|
int
|
||
|
test (int a)
|
||
|
{
|
||
|
return a + a;
|
||
|
}
|