mirror of
https://github.com/postgres/postgres.git
synced 2025-05-19 00:04:06 -04:00
I'm able to get through a 'make' of the backend with no errors except the occasional 'might not be initialized error', which is nothing major, just annoying. Have a few patches from D'Arcy to incorporate, but am waiting until I can get a clean compile first, which I'm hoping to have before bed, or sometime tomorrow.
24 lines
487 B
C
24 lines
487 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* qsort.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: qsort.h,v 1.2 1996/11/06 10:29:46 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef QSORT_H
|
|
#define QSORT_H
|
|
|
|
|
|
extern void pg_qsort(void *bot,
|
|
size_t nmemb,
|
|
size_t size,
|
|
int (*compar)(void *, void *));
|
|
|
|
#endif /* QSORT_H */
|
|
|