git: f95d9ec92122 - main - cdefs: Bump the defaults for 'all'
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Nov 2024 02:02:11 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=f95d9ec92122e6b4ef99c9a258f31b9564d327d3 commit f95d9ec92122e6b4ef99c9a258f31b9564d327d3 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2024-11-14 23:52:50 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-11-15 02:01:12 +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 --- 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 64dae39be3af..4100cc0de7a5 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -623,10 +623,10 @@ #define __ISO_C_VISIBLE 2023 #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