7 lines
52 B
C
7 lines
52 B
C
|
extern void two(void);
|
||
|
|
||
|
void one(void)
|
||
|
{
|
||
|
two();
|
||
|
}
|