summaryrefslogtreecommitdiff
path: root/stdio-common/temptest.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/temptest.c')
-rw-r--r--stdio-common/temptest.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/stdio-common/temptest.c b/stdio-common/temptest.c
index 71868174db..35ea4dc808 100644
--- a/stdio-common/temptest.c
+++ b/stdio-common/temptest.c
@@ -6,21 +6,17 @@ char *files[500];
int
main (int argc, char *argv[])
{
- 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");
+ files[i] = tempnam (NULL, "file");
+ if (files[i] == NULL) {
+ printf ("tempnam failed\n");
exit (1);
}
- files[i] = strdup (fn);
- printf ("file: %s\n", fn);
- fp = fopen (fn, "w");
+ printf ("file: %s\n", files[i]);
+ fp = fopen (files[i], "w");
fclose (fp);
}