]> Savannah Git Hosting - gnulib.git/commitdiff
qsort_r: Update documentation.
authorBruno Haible <bruno@clisp.org>
Sun, 29 Dec 2024 22:06:06 +0000 (23:06 +0100)
committerBruno Haible <bruno@clisp.org>
Sun, 29 Dec 2024 22:08:43 +0000 (23:08 +0100)
* modules/qsort_r (Description): Say "POSIX signature".
* doc/posix-functions/qsort_r.texi: Mention the qsort_r module.

ChangeLog
doc/posix-functions/qsort_r.texi
modules/qsort_r

index e312d0a5a79e1b52de72eb7521e82ebcfe9f4a25..011eb953d0f3212471ad463d91237205fe707574 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-12-29  Bruno Haible  <bruno@clisp.org>
+
+       qsort_r: Update documentation.
+       * modules/qsort_r (Description): Say "POSIX signature".
+       * doc/posix-functions/qsort_r.texi: Mention the qsort_r module.
+
 2024-12-29  Pádraig Brady  <P@draigBrady.com>
 
        git-version-gen: reinstate executable permission
index a26c817be0957f05d2348b1281c8b6da7bfdcf7b..98248ec2330ef0b563d678e1d85af1ff0ba419ed 100644 (file)
@@ -6,7 +6,8 @@ POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/fun
 
 Documentation:@* @uref{https://www.kernel.org/doc/man-pages/online/pages/man3/qsort_r.3.html,,man qsort_r}
 
-Gnulib module: ---
+Gnulib module: qsort_r
+@mindex qsort_r
 
 Portability problems fixed by Gnulib:
 @itemize
@@ -15,7 +16,7 @@ This function is missing on some platforms:
 glibc 2.7, NetBSD 10.0, OpenBSD 7.5, Minix 3.1.8, AIX 7.1, HP-UX 11.31, Solaris 11.4, Cygwin 1.7.x, mingw, MSVC 14, Android 9.0.
 @item
 This function has an incompatible API on some platforms:
-FreeBSD 13.2.
+FreeBSD 13.4.
 @end itemize
 
 Portability problems not fixed by Gnulib:
index 22f51f895f6e7ad4d02cfffa362d4ce0d6bb91a9..4516ac4e17ccb1aef660e523d965a274d7cae7fd 100644 (file)
@@ -1,5 +1,5 @@
 Description:
-Reentrant sort function with GNU signature
+Reentrant sort function with POSIX signature
 
 Files:
 lib/qsort.c
@@ -14,7 +14,7 @@ configure.ac:
 gl_FUNC_QSORT_R
 dnl If the function is missing from the system or has an unknown signature:
 gl_CONDITIONAL([GL_COND_OBJ_QSORT], [test $HAVE_QSORT_R = 0])
-dnl If the function exists, but it has the BSD signature:
+dnl If the function exists, but it has the FreeBSD signature:
 gl_CONDITIONAL([GL_COND_OBJ_QSORT_R],
                [test $HAVE_QSORT_R = 1 && test $REPLACE_QSORT_R = 1])
 gl_STDLIB_MODULE_INDICATOR([qsort_r])