diff options
author | Roland McGrath <roland@gnu.org> | 1995-02-24 19:47:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-02-24 19:47:17 +0000 |
commit | e66f63fb6364729aad510f5b3feb8a046775ec1a (patch) | |
tree | 9a30659f0c20386836b08c3f032014f157ac72b6 /stdio/bug5.c | |
parent | b5388cb6b1e845544760ddc66b6581c5df9f2616 (diff) | |
download | glibc-e66f63fb6364729aad510f5b3feb8a046775ec1a.tar.gz glibc-e66f63fb6364729aad510f5b3feb8a046775ec1a.tar.xz glibc-e66f63fb6364729aad510f5b3feb8a046775ec1a.zip |
Fri Feb 24 14:40:48 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* stdio/bug4.c: Put temporary files in /tmp. * stdio/bug3.c: Likewise. * stdio/bug5.c: Likewise. * stdio/test-fseek.c: Likewise. * stdio/test-popen.c: Likewise.
Diffstat (limited to 'stdio/bug5.c')
-rw-r--r-- | stdio/bug5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio/bug5.c b/stdio/bug5.c index 218af31352..18f069ae29 100644 --- a/stdio/bug5.c +++ b/stdio/bug5.c @@ -15,8 +15,8 @@ DEFUN_VOID(main) { FILE *in; FILE *out; - static char inname[] = "infile"; - static char outname[] = "outfile"; + static char inname[] = "/tmp/bug5.in"; + static char outname[] = "/tmp/bug5.out"; int i; /* Create a test file. */ |