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