2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
|
1996-12-20 01:39:50 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1999-10-28 21:38:59 +00:00
|
|
|
/* If you consider tuning this algorithm, you should consult first:
|
|
|
|
Engineering a sort function; Jon Bentley and M. Douglas McIlroy;
|
|
|
|
Software - Practice and Experience; Vol. 23 (11), 1249-1265, 1993. */
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
#include <errno.h>
|
1999-10-28 21:38:59 +00:00
|
|
|
#include <limits.h>
|
2023-10-03 12:22:46 +00:00
|
|
|
#include <memswap.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-10-03 12:22:46 +00:00
|
|
|
#include <stdbool.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-10-03 12:22:46 +00:00
|
|
|
/* Swap SIZE bytes between addresses A and B. These helpers are provided
|
|
|
|
along the generic one as an optimization. */
|
|
|
|
|
|
|
|
enum swap_type_t
|
|
|
|
{
|
|
|
|
SWAP_WORDS_64,
|
|
|
|
SWAP_WORDS_32,
|
2024-01-15 14:07:21 +00:00
|
|
|
SWAP_VOID_ARG,
|
2023-10-03 12:22:46 +00:00
|
|
|
SWAP_BYTES
|
|
|
|
};
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
typedef uint32_t __attribute__ ((__may_alias__)) u32_alias_t;
|
|
|
|
typedef uint64_t __attribute__ ((__may_alias__)) u64_alias_t;
|
|
|
|
|
2023-10-03 12:22:46 +00:00
|
|
|
static inline void
|
|
|
|
swap_words_64 (void * restrict a, void * restrict b, size_t n)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
n -= 8;
|
|
|
|
u64_alias_t t = *(u64_alias_t *)(a + n);
|
|
|
|
*(u64_alias_t *)(a + n) = *(u64_alias_t *)(b + n);
|
|
|
|
*(u64_alias_t *)(b + n) = t;
|
|
|
|
} while (n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
swap_words_32 (void * restrict a, void * restrict b, size_t n)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
n -= 4;
|
|
|
|
u32_alias_t t = *(u32_alias_t *)(a + n);
|
|
|
|
*(u32_alias_t *)(a + n) = *(u32_alias_t *)(b + n);
|
|
|
|
*(u32_alias_t *)(b + n) = t;
|
|
|
|
} while (n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Replace the indirect call with a serie of if statements. It should help
|
|
|
|
the branch predictor. */
|
|
|
|
static void
|
|
|
|
do_swap (void * restrict a, void * restrict b, size_t size,
|
|
|
|
enum swap_type_t swap_type)
|
|
|
|
{
|
|
|
|
if (swap_type == SWAP_WORDS_64)
|
|
|
|
swap_words_64 (a, b, size);
|
|
|
|
else if (swap_type == SWAP_WORDS_32)
|
|
|
|
swap_words_32 (a, b, size);
|
|
|
|
else
|
|
|
|
__memswap (a, b, size);
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Establish the heap condition at index K, that is, the key at K will
|
|
|
|
not be less than either of its children, at 2 * K + 1 and 2 * K + 2
|
|
|
|
(if they exist). N is the last valid index. */
|
2023-10-03 12:22:49 +00:00
|
|
|
static inline void
|
|
|
|
siftdown (void *base, size_t size, size_t k, size_t n,
|
|
|
|
enum swap_type_t swap_type, __compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* There can only be a heap condition violation if there are
|
|
|
|
children. */
|
|
|
|
while (2 * k + 1 <= n)
|
2023-10-03 12:22:49 +00:00
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Left child. */
|
|
|
|
size_t j = 2 * k + 1;
|
|
|
|
/* If the right child is larger, use it. */
|
2023-10-03 12:22:49 +00:00
|
|
|
if (j < n && cmp (base + (j * size), base + ((j + 1) * size), arg) < 0)
|
|
|
|
j++;
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* If k is already >= to its children, we are done. */
|
2023-11-08 14:18:02 +00:00
|
|
|
if (j == k || cmp (base + (k * size), base + (j * size), arg) >= 0)
|
2023-10-03 12:22:49 +00:00
|
|
|
break;
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Heal the violation. */
|
2023-10-03 12:22:49 +00:00
|
|
|
do_swap (base + (size * j), base + (k * size), size, swap_type);
|
2023-11-21 15:45:35 +00:00
|
|
|
|
|
|
|
/* Swapping with j may have introduced a violation at j. Fix
|
|
|
|
it in the next loop iteration. */
|
2023-10-03 12:22:49 +00:00
|
|
|
k = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Establish the heap condition for the indices 0 to N (inclusive). */
|
2023-10-03 12:22:49 +00:00
|
|
|
static inline void
|
|
|
|
heapify (void *base, size_t size, size_t n, enum swap_type_t swap_type,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* If n is odd, k = n / 2 has a left child at n, so this is the
|
|
|
|
largest index that can have a heap condition violation regarding
|
|
|
|
its children. */
|
2023-10-03 12:22:49 +00:00
|
|
|
size_t k = n / 2;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
siftdown (base, size, k, n, swap_type, cmp, arg);
|
|
|
|
if (k-- == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
static enum swap_type_t
|
|
|
|
get_swap_type (void *const pbase, size_t size)
|
|
|
|
{
|
|
|
|
if ((size & (sizeof (uint32_t) - 1)) == 0
|
|
|
|
&& ((uintptr_t) pbase) % __alignof__ (uint32_t) == 0)
|
|
|
|
{
|
|
|
|
if (size == sizeof (uint32_t))
|
|
|
|
return SWAP_WORDS_32;
|
|
|
|
else if (size == sizeof (uint64_t)
|
|
|
|
&& ((uintptr_t) pbase) % __alignof__ (uint64_t) == 0)
|
|
|
|
return SWAP_WORDS_64;
|
|
|
|
}
|
|
|
|
return SWAP_BYTES;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* A non-recursive heapsort with worst-case performance of O(nlog n) and
|
|
|
|
worst-case space complexity of O(1). It sorts the array starting at
|
|
|
|
BASE with n + 1 elements of SIZE bytes. The SWAP_TYPE is the callback
|
|
|
|
function used to swap elements, and CMP is the function used to compare
|
|
|
|
elements. */
|
2023-10-03 12:22:49 +00:00
|
|
|
static void
|
2024-01-15 14:07:21 +00:00
|
|
|
heapsort_r (void *base, size_t n, size_t size, __compar_d_fn_t cmp, void *arg)
|
2023-10-03 12:22:49 +00:00
|
|
|
{
|
2024-01-16 02:16:56 +00:00
|
|
|
if (n == 0)
|
2023-10-03 12:22:49 +00:00
|
|
|
return;
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
enum swap_type_t swap_type = get_swap_type (base, size);
|
|
|
|
|
2023-10-03 12:22:49 +00:00
|
|
|
/* Build the binary heap, largest value at the base[0]. */
|
|
|
|
heapify (base, size, n, swap_type, cmp, arg);
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
while (true)
|
2023-10-03 12:22:49 +00:00
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Indices 0 .. n contain the binary heap. Extract the largest
|
|
|
|
element put it into the final position in the array. */
|
2023-10-03 12:22:49 +00:00
|
|
|
do_swap (base, base + (n * size), size, swap_type);
|
2023-11-21 15:45:35 +00:00
|
|
|
|
|
|
|
/* The heap is now one element shorter. */
|
2023-10-03 12:22:49 +00:00
|
|
|
n--;
|
2023-11-21 15:45:35 +00:00
|
|
|
if (n == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* By swapping in elements 0 and the previous value of n (now at
|
|
|
|
n + 1), we likely introduced a heap condition violation. Fix
|
|
|
|
it for the reduced heap. */
|
2023-10-03 12:22:49 +00:00
|
|
|
siftdown (base, size, 0, n, swap_type, cmp, arg);
|
|
|
|
}
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
/* The maximum size in bytes required by mergesort that will be provided
|
|
|
|
through a buffer allocated in the stack. */
|
|
|
|
#define QSORT_STACK_SIZE 1024
|
|
|
|
|
|
|
|
/* Elements larger than this value will be sorted through indirect sorting
|
|
|
|
to minimize the need to memory swap calls. */
|
|
|
|
#define INDIRECT_SORT_SIZE_THRES 32
|
|
|
|
|
|
|
|
struct msort_param
|
2023-10-03 12:22:47 +00:00
|
|
|
{
|
2024-01-15 14:07:21 +00:00
|
|
|
size_t s;
|
|
|
|
enum swap_type_t var;
|
|
|
|
__compar_d_fn_t cmp;
|
|
|
|
void *arg;
|
|
|
|
char *t;
|
|
|
|
};
|
2023-10-03 12:22:47 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
static void
|
|
|
|
msort_with_tmp (const struct msort_param *p, void *b, size_t n)
|
|
|
|
{
|
|
|
|
char *b1, *b2;
|
|
|
|
size_t n1, n2;
|
2023-10-03 12:22:47 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
if (n <= 1)
|
|
|
|
return;
|
2023-10-03 12:22:47 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
n1 = n / 2;
|
|
|
|
n2 = n - n1;
|
|
|
|
b1 = b;
|
|
|
|
b2 = (char *) b + (n1 * p->s);
|
2023-10-03 12:22:47 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
msort_with_tmp (p, b1, n1);
|
|
|
|
msort_with_tmp (p, b2, n2);
|
2023-10-03 12:22:47 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
char *tmp = p->t;
|
|
|
|
const size_t s = p->s;
|
|
|
|
__compar_d_fn_t cmp = p->cmp;
|
|
|
|
void *arg = p->arg;
|
|
|
|
switch (p->var)
|
2023-10-03 12:22:47 +00:00
|
|
|
{
|
2024-01-15 14:07:21 +00:00
|
|
|
case SWAP_WORDS_32:
|
|
|
|
while (n1 > 0 && n2 > 0)
|
|
|
|
{
|
|
|
|
if (cmp (b1, b2, arg) <= 0)
|
|
|
|
{
|
|
|
|
*(u32_alias_t *) tmp = *(u32_alias_t *) b1;
|
|
|
|
b1 += sizeof (u32_alias_t);
|
|
|
|
--n1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*(u32_alias_t *) tmp = *(u32_alias_t *) b2;
|
|
|
|
b2 += sizeof (u32_alias_t);
|
|
|
|
--n2;
|
|
|
|
}
|
|
|
|
tmp += sizeof (u32_alias_t);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWAP_WORDS_64:
|
|
|
|
while (n1 > 0 && n2 > 0)
|
|
|
|
{
|
|
|
|
if (cmp (b1, b2, arg) <= 0)
|
|
|
|
{
|
|
|
|
*(u64_alias_t *) tmp = *(u64_alias_t *) b1;
|
|
|
|
b1 += sizeof (u64_alias_t);
|
|
|
|
--n1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*(u64_alias_t *) tmp = *(u64_alias_t *) b2;
|
|
|
|
b2 += sizeof (u64_alias_t);
|
|
|
|
--n2;
|
|
|
|
}
|
|
|
|
tmp += sizeof (u64_alias_t);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SWAP_VOID_ARG:
|
|
|
|
while (n1 > 0 && n2 > 0)
|
|
|
|
{
|
|
|
|
if ((*cmp) (*(const void **) b1, *(const void **) b2, arg) <= 0)
|
|
|
|
{
|
|
|
|
*(void **) tmp = *(void **) b1;
|
|
|
|
b1 += sizeof (void *);
|
|
|
|
--n1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*(void **) tmp = *(void **) b2;
|
|
|
|
b2 += sizeof (void *);
|
|
|
|
--n2;
|
|
|
|
}
|
|
|
|
tmp += sizeof (void *);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
while (n1 > 0 && n2 > 0)
|
|
|
|
{
|
|
|
|
if (cmp (b1, b2, arg) <= 0)
|
|
|
|
{
|
|
|
|
tmp = (char *) __mempcpy (tmp, b1, s);
|
|
|
|
b1 += s;
|
|
|
|
--n1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tmp = (char *) __mempcpy (tmp, b2, s);
|
|
|
|
b2 += s;
|
|
|
|
--n2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2023-10-03 12:22:47 +00:00
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
if (n1 > 0)
|
|
|
|
memcpy (tmp, b1, n1 * s);
|
|
|
|
memcpy (b, p->t, (n - n2) * s);
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
static void
|
|
|
|
__attribute_used__
|
|
|
|
indirect_msort_with_tmp (const struct msort_param *p, void *b, size_t n,
|
|
|
|
size_t s)
|
|
|
|
{
|
|
|
|
/* Indirect sorting. */
|
|
|
|
char *ip = (char *) b;
|
|
|
|
void **tp = (void **) (p->t + n * sizeof (void *));
|
|
|
|
void **t = tp;
|
|
|
|
void *tmp_storage = (void *) (tp + n);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
while ((void *) t < tmp_storage)
|
|
|
|
{
|
|
|
|
*t++ = ip;
|
|
|
|
ip += s;
|
|
|
|
}
|
|
|
|
msort_with_tmp (p, p->t + n * sizeof (void *), n);
|
|
|
|
|
|
|
|
/* tp[0] .. tp[n - 1] is now sorted, copy around entries of
|
|
|
|
the original array. Knuth vol. 3 (2nd ed.) exercise 5.2-10. */
|
|
|
|
char *kp;
|
|
|
|
size_t i;
|
|
|
|
for (i = 0, ip = (char *) b; i < n; i++, ip += s)
|
|
|
|
if ((kp = tp[i]) != ip)
|
|
|
|
{
|
|
|
|
size_t j = i;
|
|
|
|
char *jp = ip;
|
|
|
|
memcpy (tmp_storage, ip, s);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
size_t k = (kp - (char *) b) / s;
|
|
|
|
tp[j] = jp;
|
|
|
|
memcpy (jp, kp, s);
|
|
|
|
j = k;
|
|
|
|
jp = kp;
|
|
|
|
kp = tp[k];
|
|
|
|
}
|
|
|
|
while (kp != ip);
|
|
|
|
|
|
|
|
tp[j] = jp;
|
|
|
|
memcpy (jp, tmp_storage, s);
|
|
|
|
}
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
void
|
2023-10-03 12:22:50 +00:00
|
|
|
__qsort_r (void *const pbase, size_t total_elems, size_t size,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2023-10-03 12:22:49 +00:00
|
|
|
if (total_elems <= 1)
|
1995-02-18 01:27:10 +00:00
|
|
|
return;
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
/* Align to the maximum size used by the swap optimization. */
|
|
|
|
_Alignas (uint64_t) char tmp[QSORT_STACK_SIZE];
|
|
|
|
size_t total_size = total_elems * size;
|
|
|
|
char *buf;
|
2023-10-03 12:22:46 +00:00
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
if (size > INDIRECT_SORT_SIZE_THRES)
|
|
|
|
total_size = 2 * total_elems * sizeof (void *) + size;
|
2023-10-03 12:22:49 +00:00
|
|
|
|
2024-01-22 20:29:18 +00:00
|
|
|
if (total_size <= sizeof tmp)
|
2024-01-15 14:07:21 +00:00
|
|
|
buf = tmp;
|
|
|
|
else
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2024-01-15 14:07:21 +00:00
|
|
|
int save = errno;
|
|
|
|
buf = malloc (total_size);
|
|
|
|
__set_errno (save);
|
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
/* Fallback to heapsort in case of memory failure. */
|
|
|
|
heapsort_r (pbase, total_elems - 1, size, cmp, arg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size > INDIRECT_SORT_SIZE_THRES)
|
|
|
|
{
|
|
|
|
const struct msort_param msort_param =
|
|
|
|
{
|
|
|
|
.s = sizeof (void *),
|
|
|
|
.cmp = cmp,
|
|
|
|
.arg = arg,
|
|
|
|
.var = SWAP_VOID_ARG,
|
|
|
|
.t = buf,
|
|
|
|
};
|
|
|
|
indirect_msort_with_tmp (&msort_param, pbase, total_elems, size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const struct msort_param msort_param =
|
|
|
|
{
|
|
|
|
.s = size,
|
|
|
|
.cmp = cmp,
|
|
|
|
.arg = arg,
|
|
|
|
.var = get_swap_type (pbase, size),
|
|
|
|
.t = buf,
|
|
|
|
};
|
|
|
|
msort_with_tmp (&msort_param, pbase, total_elems);
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
|
|
|
|
2024-01-15 14:07:21 +00:00
|
|
|
if (buf != tmp)
|
|
|
|
free (buf);
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
2023-10-03 12:22:50 +00:00
|
|
|
libc_hidden_def (__qsort_r)
|
|
|
|
weak_alias (__qsort_r, qsort_r)
|
|
|
|
|
|
|
|
void
|
|
|
|
qsort (void *b, size_t n, size_t s, __compar_fn_t cmp)
|
|
|
|
{
|
|
|
|
return __qsort_r (b, n, s, (__compar_d_fn_t) cmp, NULL);
|
|
|
|
}
|
|
|
|
libc_hidden_def (qsort)
|