llvm/lldb/test/API/functionalities/breakpoint/breakpoint_command/a.c

#include <stdio.h>

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