diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-14 15:37:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-14 15:37:04 +0000 |
commit | da258119328fe4af0e0aa0d6f292600732aa0bb4 (patch) | |
tree | 3d4ab4a3c9d52bc28eb15293a5c0a096d7e7ec6f /src/tee.c | |
parent | dc4fd4c43b21e3c7043d963f1ecbae5716f06e61 (diff) | |
download | coreutils-da258119328fe4af0e0aa0d6f292600732aa0bb4.tar.xz |
Include closeout.h. (main): Use close_stdout.
Diffstat (limited to 'src/tee.c')
-rw-r--r-- | src/tee.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* tee - read from standard input and write to standard output and files. - Copyright (C) 85,90,91,92,93,94,95,96,1997 Free Software Foundation, Inc. + Copyright (C) 85,1990-1999 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,6 +24,7 @@ #include <getopt.h> #include "system.h" +#include "closeout.h" #include "error.h" int full_write (); @@ -151,8 +152,9 @@ main (int argc, char **argv) errs = tee (argc - optind, (const char **) &argv[optind]); if (close (0) != 0) error (1, errno, _("standard input")); - if (close (1) != 0) - error (1, errno, _("standard output")); + + close_stdout (); + exit (errs); } |