summaryrefslogtreecommitdiff
path: root/src/echo.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-07 14:51:07 +0000
committerJim Meyering <jim@meyering.net>2000-05-07 14:51:07 +0000
commitd3683509b3953beb014e540f6d6194658ede1dea (patch)
treee15b956e652d4ded7d42d9e84665627b486877b5 /src/echo.c
parentddb8aa8b9f3d8bfc8d86cc69beacf628b42a3ce3 (diff)
downloadcoreutils-d3683509b3953beb014e540f6d6194658ede1dea.tar.xz
Include "closeout.h".
(main): Call atexit with close_stdout.
Diffstat (limited to 'src/echo.c')
-rw-r--r--src/echo.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/echo.c b/src/echo.c
index bbb37f4f1..deb22bda1 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -1,5 +1,5 @@
/* echo.c, derived from code echo.c in Bash.
- Copyright (C) 87,89, 1991-1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 87,89, 1991-1997, 1999, 2000 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
@@ -19,6 +19,7 @@
#include <stdio.h>
#include <sys/types.h>
#include "system.h"
+#include "closeout.h"
#include "long-options.h"
/* The official name of this program (e.g., no `g' prefix). */
@@ -117,6 +118,8 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
+ atexit (close_stdout);
+
/* Don't recognize --help or --version if POSIXLY_CORRECT is set. */
if (getenv ("POSIXLY_CORRECT") == NULL)
parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,