aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/55 exe static shared/prog.c
blob: 6dba60d7cbde60dfa49f205626575066cb287d2f (plain)
1
2
3
4
5
6
7
8
9
10
int shlibfunc2(void);
int statlibfunc(void);

int main(void) {
    if (statlibfunc() != 42)
        return 1;
    if (shlibfunc2() != 24)
        return 1;
    return 0;
}