From 3140984fab615a5d694cc0fdbb1fe02b243b42ad Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 5 May 2000 21:55:32 +0000 Subject: Include "closeout.h". (main): Call close_stdout. --- src/hostname.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/hostname.c') diff --git a/src/hostname.c b/src/hostname.c index beebb2dc8..6b2c4ddab 100644 --- a/src/hostname.c +++ b/src/hostname.c @@ -1,5 +1,5 @@ /* hostname - set or print the name of current host system - Copyright (C) 1994-1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1994-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 @@ -22,6 +22,7 @@ #include #include "system.h" +#include "closeout.h" #include "long-options.h" #include "error.h" @@ -113,6 +114,7 @@ main (int argc, char **argv) if (hostname == NULL) error (1, errno, _("cannot determine hostname")); printf ("%s\n", hostname); + close_stdout (); } else { -- cgit v1.2.3-54-g00ecf