Files
RedBear-OS/local/recipes/dev/meson/source/test cases/failing/32 exe static shared/prog.c
T

11 lines
181 B
C

int shlibfunc2();
int statlibfunc();
int main(int argc, char **argv) {
if (statlibfunc() != 42)
return 1;
if (shlibfunc2() != 24)
return 1;
return 0;
}