xref: /llvm-project/lldb/test/API/commands/target/modules/lookup/main.c (revision 2c76e88e9eb284d17cf409851fb01f1d583bb22a)
1 #include <stdio.h>
2 
3 void
doSomething()4 doSomething()
5 {
6   printf ("Set a breakpoint here.\n");
7   printf ("Need a bit more code.\n");
8 }
9 
10 int
main()11 main()
12 {
13   doSomething();
14   return 0;
15 }
16