diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-10-18 19:06:52 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-10-18 19:06:52 +0200 |
commit | 27dae84ed92f1ef0300263091972338d12e78348 (patch) | |
tree | 7c52931f474fafb8a4bd4fd15ca3461c77cdecc2 /lib/mbtowc-lock.h | |
parent | 4682deeb62247d34de87f8e777f99e2d337fd377 (diff) |
New upstream version 1.4.1upstream/1.4.1upstream
Diffstat (limited to 'lib/mbtowc-lock.h')
-rw-r--r-- | lib/mbtowc-lock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/mbtowc-lock.h b/lib/mbtowc-lock.h index 10f7dc7c..1e67c96e 100644 --- a/lib/mbtowc-lock.h +++ b/lib/mbtowc-lock.h @@ -1,5 +1,5 @@ /* Use the internal lock used by mbrtowc and mbrtoc32. - Copyright (C) 2019-2024 Free Software Foundation, Inc. + Copyright (C) 2019-2025 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -23,7 +23,7 @@ mbtowc_unlocked (wchar_t *pwc, const char *p, size_t m) { /* Put the hidden internal state of mbtowc into an initial state. This is needed at least with glibc, uClibc, and MSVC CRT. - See <https://sourceware.org/bugzilla/show_bug.cgi?id=9674>. */ + See <https://sourceware.org/PR9674>. */ mbtowc (NULL, NULL, 0); return mbtowc (pwc, p, m); @@ -59,7 +59,7 @@ mbtowc_with_lock (wchar_t *pwc, const char *p, size_t m) return ret; } -#elif HAVE_PTHREAD_API /* AIX, IRIX, Cygwin */ +#elif HAVE_PTHREAD_API /* AIX, Cygwin */ extern # if defined _WIN32 || defined __CYGWIN__ @@ -67,7 +67,7 @@ extern # endif pthread_mutex_t *gl_get_mbtowc_lock (void); -# if HAVE_WEAK_SYMBOLS /* IRIX */ +# if HAVE_WEAK_SYMBOLS /* Avoid the need to link with '-lpthread'. */ # pragma weak pthread_mutex_lock |