]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Include "closeout.h".
authorJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:55:32 +0000 (21:55 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:55:32 +0000 (21:55 +0000)
(main): Call close_stdout.

src/hostname.c

index beebb2dc8b8b091bd0b7997b4478fbd4e9b17792..6b2c4ddab9791c4f58bf36a3e85b09a5c806a82c 100644 (file)
@@ -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 <sys/types.h>
 
 #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
     {