Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jul 2026 10:00:20 +0000
From:      Olivier Certner <olce@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: eea360993be8 - stable/14 - ps(1): Sort headers
Message-ID:  <6a61e634.3bbee.6939f4f1@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by olce:

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

commit eea360993be8d0fddbae1816e890666274488ba8
Author:     Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2026-01-08 15:20:38 +0000
Commit:     Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-07-23 09:58:52 +0000

    ps(1): Sort headers
    
    Found these changes by chance in an old patch file.  Should have been
    committed along with the ps(1) modifications done in March 2025.
    
    No functional change (intended).
    
    MFC after:      3 days
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit 730b3e20069b7115d16f02525103c6c05fa04759)
---
 bin/ps/keyword.c | 4 ++--
 bin/ps/ps.c      | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/bin/ps/keyword.c b/bin/ps/keyword.c
index 5f886497a272..92c273b66407 100644
--- a/bin/ps/keyword.c
+++ b/bin/ps/keyword.c
@@ -41,10 +41,10 @@ static char sccsid[] = "@(#)keyword.c	8.5 (Berkeley) 4/2/94";
 #endif
 #include <sys/cdefs.h>
 #include <sys/param.h>
-#include <sys/time.h>
-#include <sys/resource.h>
 #include <sys/proc.h>
+#include <sys/resource.h>
 #include <sys/sysctl.h>
+#include <sys/time.h>
 #include <sys/user.h>
 
 #include <assert.h>
diff --git a/bin/ps/ps.c b/bin/ps/ps.c
index 3b62803d430c..88b7e88f9318 100644
--- a/bin/ps/ps.c
+++ b/bin/ps/ps.c
@@ -55,13 +55,13 @@ static char sccsid[] = "@(#)ps.c	8.4 (Berkeley) 4/2/94";
 
 #include <sys/cdefs.h>
 #include <sys/param.h>
+#include <sys/ioctl.h>
 #include <sys/jail.h>
+#include <sys/mount.h>
 #include <sys/proc.h>
-#include <sys/user.h>
 #include <sys/stat.h>
-#include <sys/ioctl.h>
 #include <sys/sysctl.h>
-#include <sys/mount.h>
+#include <sys/user.h>
 
 #include <ctype.h>
 #include <errno.h>


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a61e634.3bbee.6939f4f1>