diff options
| author | Collin Funk <collin.funk1@gmail.com> | 2024-07-02 17:24:39 -0700 |
|---|---|---|
| committer | Reuben Thomas <rrt@sc3d.org> | 2024-07-03 13:01:36 +0300 |
| commit | 667e594a202ad2424dd7bb0eb3d5358c6be05791 (patch) | |
| tree | d03a9471559e985cefba5787b20d766ecdb57b26 | |
| parent | 81a1310bed50edb43f452da7c03b896d213402e2 (diff) | |
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>.
| -rw-r--r-- | src/hello.c | 4 |
1 files 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" |
