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

#include "a.h"

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

int
a_func(int input)
{
  input += 1; // Set A breakpoint here;
  return main_func(input);
}