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

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