1 | #include <stdio.h> |
---|---|
2 | |
3 | #include "a.h" |
4 | |
5 | static int |
6 | main_func(int input) |
7 | { |
8 | return printf(format: "Set B breakpoint here: %d", input); |
9 | } |
10 | |
11 | int |
12 | a_func(int input) |
13 | { |
14 | input += 1; // Set A breakpoint here; |
15 | return main_func(input); |
16 | } |
17 |