1 extern int call_through_indirect(int); 2 extern int reexport_to_indirect(int); 3 4 int main()5main () 6 { 7 int indirect_result = call_through_indirect(20); // Set breakpoint here to step in indirect. 8 indirect_result = call_through_indirect(30); 9 10 int reexport_result = reexport_to_indirect (20); // Set breakpoint here to step in reexported. 11 reexport_result = reexport_to_indirect (30); 12 13 return 0; 14 } 15