From: Jim Meyering Date: Sat, 20 May 2000 22:04:40 +0000 (+0000) Subject: Arrange to call close_stdout upon exit. Don't close stdout explicitly. X-Git-Tag: FILEUTILS-4_0t~76 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=ac8180336348bee878584b013d71f84e5d047f21;p=thirdparty%2Fcoreutils.git Arrange to call close_stdout upon exit. Don't close stdout explicitly. --- diff --git a/src/csplit.c b/src/csplit.c index 3be33fa922..a4fe0e75ef 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -27,6 +27,7 @@ #include #include "system.h" +#include "closeout.h" #include @@ -1383,6 +1384,8 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); + atexit (close_stdout); + global_argv = argv; controls = NULL; control_used = 0; @@ -1489,9 +1492,6 @@ main (int argc, char **argv) cleanup_fatal (); } - if (!suppress_count && (ferror (stdout) || fclose (stdout) == EOF)) - error (EXIT_FAILURE, errno, _("write error")); - exit (EXIT_SUCCESS); }