main.m   [plain text]


#include <stdio.h>

extern void bar();

int main()
{
	bar();
	return 0;
}