aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/120 extract all shared library/prog.c
blob: de0cc7f8ee89e26a156fcff80ea8135fe6d71ea0 (plain)
1
2
3
4
5
6
7
8
9
10
#include"extractor.h"
#include<stdio.h>

int main(void) {
    if((1+2+3+4) != (func1() + func2() + func3() + func4())) {
        printf("Arithmetic is fail.\n");
        return 1;
    }
    return 0;
}