blob: 78527924cd0e57a233cfbeabfdd47d6b81e8341e [file] [log] [blame]
extern void bar();
int foo() {
bar();
return 0;
}
int main()
{
return foo();
}