8 lines
87 B
C
8 lines
87 B
C
int static1(void);
|
|
int static2(void);
|
|
|
|
int static2(void)
|
|
{
|
|
return 1 + static1();
|
|
}
|