xref: /minix3/tests/usr.bin/xlint/lint1/d_c99_func.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1 /* C99 __func__ */
2 
3 void
foo(const char * p)4 foo(const char *p) {
5 	p = __func__;
6 	foo(p);
7 }
8