git: fe55d62ab9a5 - main - Revert "stdio.h: don't expose rsize_t unless __EXT1_VISIBLE"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 02 Oct 2024 15:52:14 UTC
The branch main has been updated by cy:
URL: https://cgit.FreeBSD.org/src/commit/?id=fe55d62ab9a5bb930dde3fcf54e836bc915de5bc
commit fe55d62ab9a5bb930dde3fcf54e836bc915de5bc
Author: Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2024-10-02 15:51:00 +0000
Commit: Cy Schubert <cy@FreeBSD.org>
CommitDate: 2024-10-02 15:51:56 +0000
Revert "stdio.h: don't expose rsize_t unless __EXT1_VISIBLE"
This change has caused a number of port build failures. Let's
revert this for now and request an exp-run.
This reverts commit b35f0aa4952cf03f1b2093b110607c13dd2ec991.
---
include/stdio.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/stdio.h b/include/stdio.h
index ee3ab3bfb986..b0190d25eb4f 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -48,13 +48,10 @@ typedef __size_t size_t;
#define _SIZE_T_DECLARED
#endif
-#if __EXT1_VISIBLE
-/* ISO/IEC 9899:2011 K.3.3.2 */
#ifndef _RSIZE_T_DEFINED
#define _RSIZE_T_DEFINED
typedef size_t rsize_t;
#endif
-#endif /* __EXT1_VISIBLE */
#if __POSIX_VISIBLE >= 200809
#ifndef _OFF_T_DECLARED