summaryrefslogtreecommitdiff
path: root/stdio-common/temptest.c
blob: 09786b25e740e7725d87fa51042888a33843081c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <ansidecl.h>
#include <stdio.h>
#include <string.h>

char *files[500];

int
main ()
{
  char buf[FILENAME_MAX];
  char *fn;
  FILE *fp;
  int i;

  for (i = 0; i < 500; i++) {
    fn = __stdio_gen_tempname(buf, sizeof (buf), (CONST char *) NULL,
	"file", 0, (size_t *) NULL, (FILE **) NULL);
    if (fn == NULL) {
      printf ("__stdio_gen_tempname failed\n");
      exit (1);
    }
    files[i] = strdup (fn);
    printf ("file: %s\n", fn);
    fp = fopen (fn, "w");
    fclose (fp);
  }

  for (i = 0; i < 500; i++)
    remove (files[i]);

  exit (0);
}