Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Jan 2025 12:35:58 GMT
From:      Mariusz Zaborski <oshogbo@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 8cf0915c1901 - stable/14 - perror(1): Reorder headers alphabetically to meet style(9) compliance
Message-ID:  <202501291235.50TCZwwE051363@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by oshogbo:

URL: https://cgit.FreeBSD.org/src/commit/?id=8cf0915c1901207ef3d7297c07eeb8127d3b0544

commit 8cf0915c1901207ef3d7297c07eeb8127d3b0544
Author:     Faraz Vahedi <kfv@kfv.io>
AuthorDate: 2024-10-26 18:34:07 +0000
Commit:     Mariusz Zaborski <oshogbo@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 <kfv@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>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501291235.50TCZwwE051363>