xref: /llvm-project/lldb/test/API/functionalities/archives/c.c (revision d4a141ef932a596df61581090b70d0b546de68b2)
1 static int __c_global = 3;
2 char __extra[4096]; // Make sure sizeof b.o differs from a.o and c.o
3 char __extra2[4096]; // Make sure sizeof b.o differs from a.o and c.o
c(int arg)4 int c(int arg) {
5   int result = arg + __c_global;
6   return result;
7 }
8 
cc(int arg1)9 int cc(int arg1) {
10   int result3 = arg1 - __c_global;
11   return result3;
12 }
13