1 /* C99 __func__ */
2 
3 void
4 foo(const char *p) {
5 	p = __func__;
6 	foo(p);
7 }
8