brintos

brintos / llvm-project-archived public Read only

0
0
Text · 217 B · 9c8625e Raw
18 lines · c
1#include <stdio.h>2#include "a.h"3 4int5main_func(int input)6{7  return printf("Set B breakpoint here: %d.\n", input);8}9 10int11main()12{13  a_func(10);14  main_func(10);15  printf("Set a breakpoint here:\n");16  return 0;17}18