1#include <stdio.h>
2
3void
4AFunction()
5{
6 printf (format: "I am a function.\n");
7}
8
9int
10main ()
11{
12 AFunction();
13 return 0;
14}
15

source code of lldb/test/API/python_api/breakpoint/main.c