summaryrefslogtreecommitdiff
path: root/lib/mbtowc-lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mbtowc-lock.h')
-rw-r--r--lib/mbtowc-lock.h8
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