• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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