Home | History | Annotate | Download | only in input
      1 extern void test();
      2 
      3 extern int puts(const char *);
      4 
      5 void test() {
      6   puts("hello world");
      7 }
      8