oops, forgot one.

This commit is contained in:
christos 2002-10-22 13:34:45 +00:00
parent ce599fdf1d
commit c56bbaaa39

View File

@ -0,0 +1,7 @@
/* C99 __func__ */
void
foo(const char *p) {
p = __func__;
foo(p);
}