diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-11-07 09:24:30 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-11-07 09:24:30 +0100 |
commit | 515d54433138596e81267237542bd9168b8cc787 (patch) | |
tree | f2d6745268b788cc38d1b67deb32f71916b10fec /libc/stdlib/Makefile.in | |
parent | 84144d142cb9f041dd18285cb2ad9dbe6619b0a2 (diff) |
stdlib: add qsort_r
GNU extension like qsort but takes a 3 parameter comparision function.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/stdlib/Makefile.in')
-rw-r--r-- | libc/stdlib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/Makefile.in b/libc/stdlib/Makefile.in index 760ccf7e6..73e5462f6 100644 --- a/libc/stdlib/Makefile.in +++ b/libc/stdlib/Makefile.in @@ -29,7 +29,7 @@ CSRC-$(UCLIBC_SUSV3_LEGACY) += mktemp.c # multi source stdlib.c CSRC-y += abs.c labs.c atoi.c atol.c strtol.c strtoul.c _stdlib_strto_l.c \ - qsort.c bsearch.c \ + qsort.c qsort_r.c bsearch.c \ llabs.c atoll.c strtoll.c strtoull.c _stdlib_strto_ll.c # (aliases) strtoq.o strtouq.o CSRC-$(UCLIBC_HAS_FLOATS) += atof.c |