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

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