aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/python_api/breakpoint/main.c')
-rw-r--r--packages/Python/lldbsuite/test/python_api/breakpoint/main.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/python_api/breakpoint/main.c b/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
new file mode 100644
index 000000000000..2677594e622e
--- /dev/null
+++ b/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+void
+AFunction()
+{
+ printf ("I am a function.\n");
+}
+
+int
+main ()
+{
+ AFunction();
+ return 0;
+}