bar.c   [plain text]



extern int foo();
extern int baz;

int bar() {
	return foo() + baz;
}