aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/archives/b.c
blob: 33f09937f07eb23c7a769d71389b86295ab7d2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
static int __b_global = 2;
char __extra[4096]; // Make sure sizeof b.o differs from a.o and c.o

int b(int arg) {
    int result = arg + __b_global;
    return result;
}

int bb(int arg1) {
    int result2 = arg1 - __b_global;
    return result2;
}