summaryrefslogtreecommitdiffstats
path: root/test cases/unit/86 prelinking/file1.c
blob: 9f0e265237d4a189020ee81d53d5f2ab15069512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<public_header.h>
#include<private_header.h>

int public_func() {
    return round1_a();
}

int round1_a() {
    return round1_b();
}

int round2_a() {
    return round2_b();
}