#include extern char *func1(void); extern char *func2(void); int main(int argc, char **argv) { puts(func1()); puts(func2()); return 0; }