llvm-project/lldb/test/API/linux/mix-dwo-and-regular-objects/b.c

12 lines
94 B
C

extern int f();
void g() {
int y = 14;
int x = f();
}
int main() {
g();
return 0;
}