summaryrefslogtreecommitdiff
path: root/src/dirname.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/dirname.c
parentddb8aa8b9f3d8bfc8d86cc69beacf628b42a3ce3 (diff)
downloadcoreutils-d3683509b3953beb014e540f6d6194658ede1dea.tar.xz
Include "closeout.h".
(main): Call atexit with close_stdout.
Diffstat (limited to 'src/dirname.c')
-rw-r--r--src/dirname.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dirname.c b/src/dirname.c
index fa584381c..cfe7052d1 100644
--- a/src/dirname.c
+++ b/src/dirname.c
@@ -1,5 +1,5 @@
/* dirname -- strip filename suffix from pathname
- Copyright (C) 1990-1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1990-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
@@ -24,6 +24,7 @@
#include "system.h"
#include "long-options.h"
#include "error.h"
+#include "closeout.h"
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "dirname"
@@ -71,6 +72,8 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
+ atexit (close_stdout);
+
parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
AUTHORS, usage);
/* The above handles --help and --version.