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/uname.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/uname.c') diff --git a/src/uname.c b/src/uname.c index f199ad065..a6ffe508b 100644 --- a/src/uname.c +++ b/src/uname.c @@ -1,5 +1,5 @@ /* uname -- print system information - Copyright (C) 1989-1999 Free Software Foundation, Inc. + Copyright (C) 1989-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 @@ -40,6 +40,7 @@ #include "system.h" #include "error.h" +#include "closeout.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "uname" @@ -124,6 +125,8 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); + atexit (close_stdout); + toprint = 0; while ((c = getopt_long (argc, argv, "snrvpma", long_options, NULL)) != -1) -- cgit v1.2.3-54-g00ecf