2012-01-06 00:20:08 +01:00

10 lines
91 B
C

extern int bar (void);
extern int foo (void);
int
x (void)
{
foo ();
return bar ();
}