bionic/libc/stdlib/qsort_r.c
David 'Digit' Turner 754c178ae5 Add qsort_r() implementation to the C library.
NOTE: This replaces qsort.c with the FreeBSD version. While
      the patch changes the source, it should not alter the
      implementation that should use the exact same algorithm.
2009-12-03 11:40:15 -08:00

9 lines
227 B
C

/*
* This file is in the public domain. Originally written by Garrett
* A. Wollman.
*
* $FreeBSD: src/lib/libc/stdlib/qsort_r.c,v 1.1.36.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
#define I_AM_QSORT_R
#include "qsort.c"