From 72bdac727100dd893ad1041cb9a06b48fa211058 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 7 May 2000 14:46:33 +0000 Subject: Include "closeout.h". (main): Call atexit with close_stdout. --- src/whoami.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/whoami.c') diff --git a/src/whoami.c b/src/whoami.c index e5fd7183f..1279b5975 100644 --- a/src/whoami.c +++ b/src/whoami.c @@ -1,5 +1,5 @@ /* whoami -- print effective userid - Copyright (C) 89,90, 1991-1997, 1999 Free Software Foundation, Inc. + Copyright (C) 89,90, 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 @@ -26,6 +26,7 @@ #include "system.h" #include "long-options.h" +#include "closeout.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "whoami" @@ -72,6 +73,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); -- cgit v1.2.3-54-g00ecf