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