aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/temptest.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/temptest.c')
-rw-r--r--stdio-common/temptest.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/stdio-common/temptest.c b/stdio-common/temptest.c
deleted file mode 100644
index c8cf8529f1..0000000000
--- a/stdio-common/temptest.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-char *files[500];
-
-int
-main (int argc, char *argv[])
-{
- FILE *fp;
- int i;
-
- for (i = 0; i < 500; i++) {
- files[i] = tempnam (NULL, "file");
- if (files[i] == NULL) {
- printf ("tempnam failed\n");
- exit (1);
- }
- printf ("file: %s\n", files[i]);
- fp = fopen (files[i], "w");
- fclose (fp);
- }
-
- for (i = 0; i < 500; i++)
- remove (files[i]);
-
- return 0;
-}