1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

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.
This commit is contained in:
Roland McGrath
1995-02-24 19:47:17 +00:00
parent b5388cb6b1
commit e66f63fb63
7 changed files with 17 additions and 9 deletions

View File

@ -26,7 +26,7 @@ DEFUN(main, (argc, argv),
break;
}
f = fopen("bugtest", "w+");
f = fopen("/tmp/bugtest", "w+");
for (i=0; i<9000; i++) {
putc('x', f);
}