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

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