11 lines
172 B
C
11 lines
172 B
C
int shlibfunc2(void);
|
|
int statlibfunc(void);
|
|
|
|
int main(void) {
|
|
if (statlibfunc() != 42)
|
|
return 1;
|
|
if (shlibfunc2() != 24)
|
|
return 1;
|
|
return 0;
|
|
}
|