summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c
blob: 9c8625e877f5823d2ac0853fe053a080925f1076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include "a.h"

int
main_func(int input)
{
  return printf("Set B breakpoint here: %d.\n", input);
}

int
main()
{
  a_func(10);
  main_func(10);
  printf("Set a breakpoint here:\n");
  return 0;
}