aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/81 internal dependency/src/main.c
blob: 137cc615f7bc63e7865072a3f053f97af09e723d (plain)
1
2
3
4
5
6
7
8
9
10
#include<stdio.h>
#include<proj1.h>

int main() {
    printf("Now calling into library.\n");
    proj1_func1();
    proj1_func2();
    proj1_func3();
    return 0;
}