From: Jim Meyering Date: Fri, 5 May 2000 21:55:32 +0000 (+0000) Subject: Include "closeout.h". X-Git-Tag: v4.5.1~4978 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3140984fab615a5d694cc0fdbb1fe02b243b42ad;p=thirdparty%2Fcoreutils.git Include "closeout.h". (main): Call close_stdout. --- diff --git a/src/hostname.c b/src/hostname.c index beebb2dc8b..6b2c4ddab9 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 {