2013-04-06 16:48:33 +02:00

11 lines
89 B
C

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