summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/settings/quoting/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/settings/quoting/main.c')
-rw-r--r--packages/Python/lldbsuite/test/settings/quoting/main.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/Python/lldbsuite/test/settings/quoting/main.c b/packages/Python/lldbsuite/test/settings/quoting/main.c
deleted file mode 100644
index 2ebaa142bc5ca..0000000000000
--- a/packages/Python/lldbsuite/test/settings/quoting/main.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
-/* This program writes its arguments (separated by '\0') to stdout. */
-int
-main(int argc, char const *argv[])
-{
- int i;
-
- FILE *output = fopen (argv[1], "w");
- if (output == NULL)
- exit (1);
-
- for (i = 2; i < argc; ++i)
- fwrite(argv[i], strlen(argv[i])+1, 1, output);
-
- fclose (output);
-
- return 0;
-}