git: 18731774734b - stable/14 - cdefs: Bump the defaults for 'all'
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Feb 2025 14:13:51 UTC
The branch stable/14 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=18731774734bdb7f18a2299110e14ee8652f2be4
commit 18731774734bdb7f18a2299110e14ee8652f2be4
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-11-14 23:52:50 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-02-20 14:13:25 +0000
cdefs: Bump the defaults for 'all'
Bump default to POSIX at 202405, C at 2023 and xopen at 800...
Sponsored by: Netflix
Reviewed by: brooks
Differential Revision: https://reviews.freebsd.org/D47578
(cherry picked from commit f95d9ec92122e6b4ef99c9a258f31b9564d327d3)
---
sys/sys/cdefs.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h
index 1481bc1d89d1..dc5221343dc3 100644
--- a/sys/sys/cdefs.h
+++ b/sys/sys/cdefs.h
@@ -755,10 +755,10 @@
#define __ISO_C_VISIBLE 2011
#define __EXT1_VISIBLE 0
#else /* Default environment: show everything. */
-#define __POSIX_VISIBLE 200809
-#define __XSI_VISIBLE 700
+#define __POSIX_VISIBLE 202405
+#define __XSI_VISIBLE 800
#define __BSD_VISIBLE 1
-#define __ISO_C_VISIBLE 2011
+#define __ISO_C_VISIBLE 2023
#define __EXT1_VISIBLE 1
#endif
#endif