summaryrefslogtreecommitdiff
path: root/src/yes.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-07 14:41:19 +0000
committerJim Meyering <jim@meyering.net>2000-05-07 14:41:19 +0000
commite1133c7a286f40a04a12da1be68728f388cc53b5 (patch)
tree4982b2a293d4a2f144bf18b85a0e837219898aeb /src/yes.c
parent011b92f1c9e31b41b8db3e62e0b6b4f6b5535664 (diff)
downloadcoreutils-e1133c7a286f40a04a12da1be68728f388cc53b5.tar.xz
Include "closeout.h".
(usage): Call close_stdout just before exit.
Diffstat (limited to 'src/yes.c')
-rw-r--r--src/yes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yes.c b/src/yes.c
index 276965bab..33ca609c0 100644
--- a/src/yes.c
+++ b/src/yes.c
@@ -25,6 +25,7 @@
#include "error.h"
#include "system.h"
#include "long-options.h"
+#include "closeout.h"
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "yes"
@@ -53,6 +54,7 @@ Repeatedly output a line with all specified STRING(s), or `y'.\n\
--version output version information and exit\n"));
puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
}
+ close_stdout ();
exit (status);
}