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

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