extern int
puts(const char *);

extern void
bar();

void
foo()
{
    puts("foo");
    bar();
    puts("FOO");
}