xref: /llvm-project/lldb/test/API/lang/cpp/call-function/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
a_function_to_call()3 int a_function_to_call()
4 {
5     return 0;
6 }
7 
main()8 int main()
9 {
10     printf("%d\n", a_function_to_call()); // breakpoint
11 }
12