diff options
author | Lenard Mollenkopf <newlib@lenardmollenkopf.de> | 2024-11-01 15:06:36 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2024-11-04 11:44:55 +0100 |
commit | 37920d33accdc1f841da25c1ecd8d0ac35c41682 (patch) | |
tree | ff601dca650283d18856f0668e417b3ae31d6192 /winsup/cygwin | |
parent | 5e0fb305a8193c194c0c07a9f996cd270b01ac07 (diff) | |
download | newlib-37920d33accdc1f841da25c1ecd8d0ac35c41682.zip newlib-37920d33accdc1f841da25c1ecd8d0ac35c41682.tar.gz newlib-37920d33accdc1f841da25c1ecd8d0ac35c41682.tar.bz2 |
Replace references to C2x with C23
Signed-off-by: Lenard Mollenkopf <newlib@lenardmollenkopf.de>
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/include/uchar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/include/uchar.h b/winsup/cygwin/include/uchar.h index ed548ac..032a380 100644 --- a/winsup/cygwin/include/uchar.h +++ b/winsup/cygwin/include/uchar.h @@ -4,7 +4,7 @@ #include <sys/cdefs.h> #include <wchar.h> -/* Either C2x or if C++ doesn't already define char8_t */ +/* Either C23 or if C++ doesn't already define char8_t */ #if __ISO_C_VISIBLE >= 2020 && !defined (__cpp_char8_t) typedef unsigned char char8_t; #endif @@ -17,7 +17,7 @@ typedef __uint_least32_t char32_t; __BEGIN_DECLS -/* Either C2x or if C++ defines char8_t */ +/* Either C23 or if C++ defines char8_t */ #if __ISO_C_VISIBLE >= 2020 || defined (__cpp_char8_t) size_t c8rtomb(char * __restrict, char8_t, mbstate_t * __restrict); size_t mbrtoc8(char8_t * __restrict, const char * __restrict, size_t, |