8 lines
99 B
C
8 lines
99 B
C
static int duplicate_func(void) {
|
|
return 4;
|
|
}
|
|
|
|
int func(void) {
|
|
return duplicate_func();
|
|
}
|