brintos

brintos / llvm-project-archived public Read only

0
0
Text · 219 B · 056583f Raw
17 lines · c
1#include <stdio.h>2 3#include "a.h"4 5static int6main_func(int input)7{8  return printf("Set B breakpoint here: %d", input);9}10 11int12a_func(int input)13{14  input += 1; // Set A breakpoint here;15  return main_func(input);16}17