13 lines
133 B
C
13 lines
133 B
C
|
extern void one(void);
|
||
|
extern void two(void);
|
||
|
extern void three(void);
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
one();
|
||
|
two();
|
||
|
three();
|
||
|
|
||
|
return 0;
|
||
|
}
|