1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00
Files
gnulib/modules/qsort_r
Bruno Haible c828e7623a 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 23:08:43 +01:00

38 lines
698 B
Plaintext

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