1 extern int printf(const char *, ...); 2 foo(void)3 void foo(void) 4 { 5 printf("Hello from %s!\n", __FUNCTION__); 6 } 7