summaryrefslogtreecommitdiff
path: root/lldb/test/python_api/process/io/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/process/io/main.c')
-rw-r--r--lldb/test/python_api/process/io/main.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/test/python_api/process/io/main.c b/lldb/test/python_api/process/io/main.c
deleted file mode 100644
index fdf9effc235c..000000000000
--- a/lldb/test/python_api/process/io/main.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char const *argv[]) {
- printf("Hello world.\n");
- char line[100];
- int count = 1;
- while (fgets(line, sizeof(line), stdin)) { // Reading from stdin...
- fprintf(stderr, "input line=>%d\n", count++);
- if (count > 3)
- break;
- }
-
- printf("Exiting now\n");
-}