]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Include "closeout.h".
authorJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:51:02 +0000 (21:51 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:51:02 +0000 (21:51 +0000)
(main): Call close_stdout.

src/seq.c

index c8242e0309fe327f45a7f3636705dcebb88f4f35..def96ae818894fb957af63ac7f9378c50845f4fb 100644 (file)
--- a/src/seq.c
+++ b/src/seq.c
@@ -24,6 +24,7 @@
 #include <sys/types.h>
 
 #include "system.h"
+#include "closeout.h"
 #include "error.h"
 #include "xstrtol.h"
 #include "xstrtod.h"
@@ -454,5 +455,7 @@ format string may not be specified when printing equal width strings"));
 
   errs = print_numbers (format_str);
 
+  close_stdout ();
+
   exit (errs);
 }