aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/archives/c.c
blob: 698e54475d44c6f9d7c5f20fd9d9fc3812d19644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
static int __c_global = 3;
char __extra[4096]; // Make sure sizeof b.o differs from a.o and c.o
char __extra2[4096]; // Make sure sizeof b.o differs from a.o and c.o
int c(int arg) {
  int result = arg + __c_global;
  return result;
}

int cc(int arg1) {
  int result3 = arg1 - __c_global;
  return result3;
}