xref: /llvm-project/lldb/test/API/functionalities/step-avoids-no-debug/without-debug.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 typedef int (*debug_callee) (int);
2 
3 int
no_debug_caller_intermediate(int input,debug_callee callee)4 no_debug_caller_intermediate(int input, debug_callee callee)
5 {
6   int return_value = 0;
7   return_value = callee(input);
8   return return_value;
9 }
10 
11 int
no_debug_caller(int input,debug_callee callee)12 no_debug_caller (int input, debug_callee callee)
13 {
14   int return_value = 0;
15   return_value = no_debug_caller_intermediate (input, callee);
16   return return_value;
17 }
18