The branch stable/14 has been updated by oshogbo: URL: https://cgit.FreeBSD.org/src/commit/?id=8cf0915c1901207ef3d7297c07eeb8127d3b0544
commit 8cf0915c1901207ef3d7297c07eeb8127d3b0544 Author: Faraz Vahedi <k...@kfv.io> AuthorDate: 2024-10-26 18:34:07 +0000 Commit: Mariusz Zaborski <osho...@freebsd.org> CommitDate: 2025-01-29 09:51:24 +0000 perror(1): Reorder headers alphabetically to meet style(9) compliance Signed-off-by: Faraz Vahedi <k...@kfv.io> Reviewed by: markj, oshogbo MFC after: 1 week Pull Request: https://github.com/freebsd/freebsd-src/pull/1492 (cherry picked from commit 82e9f8c2d19ba5d132438a764352eb3b4826fc58) --- 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 bdf19e2423cf..caf0972e9c50 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> #include <capsicum_helpers.h>