The branch main has been updated by kib:

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

commit f15d3694db60d0256d236320fcb9e2c6d871b0a1
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2025-09-25 00:58:33 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2025-09-26 06:51:28 +0000

    libc: un-namespace gen-compat.h
    
    There are no symbols that needs to be namespaced in the header, and it
    would not allow to use proper raw syscall names later, where they are
    needed.
    
    Reviewed by:    olce
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D52687
---
 lib/libc/gen/fts-compat.c   | 2 +-
 lib/libc/gen/fts-compat11.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/libc/gen/fts-compat.c b/lib/libc/gen/fts-compat.c
index f87cabf085f7..62a1e0a81f62 100644
--- a/lib/libc/gen/fts-compat.c
+++ b/lib/libc/gen/fts-compat.c
@@ -44,9 +44,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
-#include "gen-compat.h"
 #include "fts-compat.h"
 #include "un-namespace.h"
+#include "gen-compat.h"
 
 #include "gen-private.h"
 
diff --git a/lib/libc/gen/fts-compat11.c b/lib/libc/gen/fts-compat11.c
index 0351ce5ac690..5abb378f5f08 100644
--- a/lib/libc/gen/fts-compat11.c
+++ b/lib/libc/gen/fts-compat11.c
@@ -43,9 +43,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
-#include "gen-compat.h"
 #include "fts-compat11.h"
 #include "un-namespace.h"
+#include "gen-compat.h"
 
 #include "gen-private.h"
 

Reply via email to