1typedef int (*debug_callee) (int);
2
3int
4no_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
11int
12no_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

source code of lldb/test/API/functionalities/step-avoids-no-debug/without-debug.c