1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-13 13:45:55 +02:00

(tee): Use SET_BINARY and SET_BINARY2.

From Prashant TR.
This commit is contained in:
Jim Meyering
2000-08-01 07:10:57 +00:00
parent fe15457dcd
commit cf04cc6ec2
+3
View File
@@ -175,6 +175,8 @@ tee (int nfiles, const char **files)
for (i = nfiles; i >= 1; i--)
files[i] = files[i - 1];
SET_BINARY2 (0, 1);
/* In the array of NFILES + 1 descriptors, make
the first one correspond to standard output. */
descriptors[0] = stdout;
@@ -192,6 +194,7 @@ tee (int nfiles, const char **files)
else
{
SETVBUF (descriptors[i], NULL, _IONBF, 0);
SET_BINARY (fileno (descriptors[i]));
}
}