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