2014-03-19 17:25:32 +01:00

11 lines
97 B
C

extern void foo (void);
extern void bar (void);
int
main ()
{
foo ();
bar ();
return 0;
}