Add script for determining the set of symbols to export from a library.
[gnulib.git] / modules / qsort_r
blob6772edc4678339268aa432534c5c28444a2514a5
1 Description:
2 Reentrant sort function with GNU signature
4 Files:
5 lib/qsort.c
6 lib/qsort_r.c
7 m4/qsort_r.m4
9 Depends-on:
10 extensions
11 stdlib
13 configure.ac:
14 gl_FUNC_QSORT_R
15 if test $HAVE_QSORT_R = 0; then
16   # The function is missing from the system or has an unknown signature.
17   AC_LIBOBJ([qsort])
18 elif test $REPLACE_QSORT_R = 1; then
19   # The function exists, but it has the BSD signature.
20   AC_LIBOBJ([qsort_r])
22 gl_STDLIB_MODULE_INDICATOR([qsort_r])
24 Makefile.am:
26 Include:
27 <stdlib.h>
29 License:
30 LGPLv2+
32 Maintainer:
33 Paul Eggert