xref: /llvm-project/lldb/test/API/symbol_ondemand/shared_library/shared.c (revision 7b81192d462bbd8031d5c665e29cd6b4c0c6887a)
1 #include "foo.h"
2 #include <stdio.h>
3 
4 int global_shared = 897;
main(void)5 int main(void) {
6   puts("This is a shared library test...");
7   foo(); // Set breakpoint 0 here.
8   return 0;
9 }
10