7 lines
95 B
C
7 lines
95 B
C
int func1(void);
|
|
int func2(void);
|
|
|
|
int static_lib_func(void) {
|
|
return func1() + func2();
|
|
}
|