8 lines
72 B
C
8 lines
72 B
C
/* C99 __func__ */
|
|
|
|
void
|
|
foo(const char *p) {
|
|
p = __func__;
|
|
foo(p);
|
|
}
|