xref: /freebsd-src/contrib/netbsd-tests/usr.bin/xlint/lint1/d_gcc_func.c (revision 2b15cb3d0922bd70ea592f0da9b4a5b167f4d53f)
1 /* gcc __FUNCTION__ */
2 
3 void
4 foo(const char *p) {
5 	p = __FUNCTION__;
6 	foo(p);
7 }
8