git: 82e9f8c2d19b - main - perror(1): Reorder headers alphabetically to meet style(9) compliance
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 27 Nov 2024 14:26:57 UTC
The branch main has been updated by oshogbo: URL: https://cgit.FreeBSD.org/src/commit/?id=82e9f8c2d19ba5d132438a764352eb3b4826fc58 commit 82e9f8c2d19ba5d132438a764352eb3b4826fc58 Author: Faraz Vahedi <kfv@kfv.io> AuthorDate: 2024-10-26 18:34:07 +0000 Commit: Mariusz Zaborski <oshogbo@FreeBSD.org> CommitDate: 2024-11-27 14:26:51 +0000 perror(1): Reorder headers alphabetically to meet style(9) compliance Signed-off-by: Faraz Vahedi <kfv@kfv.io> Reviewed by: markj, oshogbo MFC after: 1 week Pull Request: https://github.com/freebsd/freebsd-src/pull/1492 --- usr.bin/perror/perror.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/usr.bin/perror/perror.c b/usr.bin/perror/perror.c index e2453edc4577..9b7eda8d9f70 100644 --- a/usr.bin/perror/perror.c +++ b/usr.bin/perror/perror.c @@ -28,12 +28,13 @@ */ #include <sys/cdefs.h> +#include <sys/errno.h> + +#include <err.h> +#include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <err.h> -#include <locale.h> -#include <sys/errno.h> static void usage(void) __dead2;