aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c
blob: 870e4a6ab166e2ef20f8e1a208762292826fb739 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int
a_MyFunction ()
{
  // Set a breakpoint here.
  printf ("a is about to return 10.\n");
  return 10;
}