Branch
Hash :
c828e762
Author :
Date :
2024-12-29T23:06:06
qsort_r: Update documentation. * modules/qsort_r (Description): Say "POSIX signature". * doc/posix-functions/qsort_r.texi: Mention the qsort_r module.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
Description:
Reentrant sort function with POSIX signature
Files:
lib/qsort.c
lib/qsort_r.c
m4/qsort_r.m4
Depends-on:
extensions
stdlib-h
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 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])
Makefile.am:
if GL_COND_OBJ_QSORT
lib_SOURCES += qsort.c
endif
if GL_COND_OBJ_QSORT_R
lib_SOURCES += qsort_r.c
endif
Include:
<stdlib.h>
License:
LGPLv2+
Maintainer:
Paul Eggert