1 #include <stdio.h> 2 3 extern void test(void); 4 zoo()5 void zoo(){} 6 main()7 int main() 8 { 9 test(); 10 printf("OK\n"); 11 return 0; 12 } 13