aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/13 pch/linkwhole/main.c
blob: 6615a8b35d00ee49a1e63c86369da543fd1cdcac (plain)
1
2
3
4
5
6
7
8
9
#include<stdio.h>

void func1();

int main(int argc, char **argv) {
    printf("Calling func1\n");
    func1();
    return 0;
}