Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:53fd7516f2ac78a614a8bb023538e9f1eaccfe8f
Author...:Sami Kerola
Committer:Sami Kerola
Date.....:Sat Feb 11 12:02:42 2017 +0000
Parents..:976cca6eb0ec9f60bf4b4f0f0176e638ce015784

Message
build: include headers proposed by bootstrap output

* src/hello.c: include missing headers and add spacing to give hint
  which headers are more special than the other.  Notic that config.h
  and system.h should be included earlier rather than later, else
  features, translations, and such might not work correctly.

Changes
diff --git a/src/hello.c b/src/hello.c
line changes: +8/-0
index 55edfa4..5bb87d5
--- a/src/hello.c
+++ b/src/hello.c
@@ -18,11 +18,19 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <config.h>
+
+#include <getopt.h>
 #include <stdnoreturn.h>
+#include <wchar.h>
 
 #include "system.h"
+
+#include "closeout.h"
+#include "configmake.h"
+#include "dirname.h"
 #include "errno.h"
 #include "error.h"
+#include "gettext.h"
 #include "progname.h"
 #include "xalloc.h"
 

This website is licensed under AGPL-3.0. Feel free to copy!