]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_gcc_func.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_gcc_func.c
1 /* gcc __FUNCTION__ */
2
3 void
4 foo(const char *p) {
5         p = __FUNCTION__;
6         foo(p);
7 }