summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
commit88c643b6fec27eec436c8d138fee6346e92337d6 (patch)
tree82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
parent94994d372d014ce4c8758b9605d63fae651bd8aa (diff)
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c')
-rw-r--r--packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c b/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
deleted file mode 100644
index 85b41c492817..000000000000
--- a/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-#include <unistd.h>
-
-int recurse(int x) {
- if (x <= 1)
- return 1; // recurse end
- return recurse(x-1) + x; // recurse call
-}
-
-int main(int argc, char const *argv[]) {
- recurse(20); // recurse invocation
- return 0;
-}