Include "closeout.h".
authorJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:49:44 +0000 (21:49 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 5 May 2000 21:49:44 +0000 (21:49 +0000)
(main): Call close_stdout.

src/pwd.c

index b0a8e01082109ed2404b2f8809d18c3c2081e929..13812220e557a050c93815fd335f601b1b1c0497 100644 (file)
--- a/src/pwd.c
+++ b/src/pwd.c
@@ -1,5 +1,5 @@
 /* pwd - print current directory
-   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"
 
@@ -76,5 +77,7 @@ main (int argc, char **argv)
     error (1, errno, _("cannot get current directory"));
   printf ("%s\n", wd);
 
+  close_stdout ();
+
   exit (0);
 }