>From e35f8e00a1742234bf319414f05a0dcb51fffdfd Mon Sep 17 00:00:00 2001 From: Collin Funk <collin.funk1@gmail.com> Date: Tue, 2 Jul 2024 17:24:39 -0700 Subject: [PATCH 5/9] 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>. --- src/hello.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hello.c b/src/hello.c index 9a9fb84..e51316d 100644 --- 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" -- 2.45.2