9 lines
68 B
C
9 lines
68 B
C
|
extern void bar (void);
|
||
|
|
||
|
int
|
||
|
start (void)
|
||
|
{
|
||
|
bar ();
|
||
|
return 0;
|
||
|
}
|