extern int hello(char* who); extern int bye(char* who); main(){ hello("world"); bye("world"); return 0; }