1 extern void test();
2 
3 extern int puts(const char *);
4 
test()5 void test() {
6   puts("hello world");
7 }
8