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


gnu-hello       
Info
Commit...:667e594a202ad2424dd7bb0eb3d5358c6be05791
Author...:Collin Funk
Committer:Reuben Thomas
Date.....:Tue Jul 2 17:24:39 2024 -0700
Parents..:81a1310bed50edb43f452da7c03b896d213402e2

Message
maint: prefer #include <...> for gnulib substitute headers

* src/hello.c: Change #include "errno.h" to #include <errno.h>.
Change #include "error.h" to #include <error.h>.

Changes
diff --git a/src/hello.c b/src/hello.c
line changes: +2/-2
index 9a9fb84..e51316d
--- a/src/hello.c
+++ b/src/hello.c
@@ -17,6 +17,8 @@
 
 #include <config.h>
 
+#include <errno.h>
+#include <error.h>
 #include <getopt.h>
 #include <stdnoreturn.h>
 #include <wchar.h>
@@ -26,8 +28,6 @@
 #include "closeout.h"
 #include "configmake.h"
 #include "dirname.h"
-#include "errno.h"
-#include "error.h"
 #include "gettext.h"
 #include "progname.h"
 #include "propername.h"

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