#include extern void foo(); extern void bar(); void main() { printf("This is a test program.\n"); foo(); bar(); printf("DONE\n"); }