xref
: /
freebsd
/
contrib
/
netbsd-tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_func.c
(revision 09a53ad8f1318c5daae6cfb19d97f4f6459f0013)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
/* C99 __func__ */
2
3
void
4
foo
(
const
char
*
p
) {
5
p
=
__func__
;
6
foo
(
p
);
7
}
8