summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp')
-rw-r--r--packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp b/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp
deleted file mode 100644
index f2035d551679..000000000000
--- a/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-int
-main (int argc, char **argv)
-{
- char buffer[1024];
-
- fgets (buffer, sizeof (buffer), stdin);
- fprintf (stdout, "%s", buffer);
-
-
- fgets (buffer, sizeof (buffer), stdin);
- fprintf (stderr, "%s", buffer);
-
- return 0;
-}