mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 03:11:02 -05:00
- code compile tested, but due to a yet unresolved problem with
parse.h's creation, compile not completed...
18 lines
439 B
C
18 lines
439 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* lispsort.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: lispsort.h,v 1.1 1996/08/28 07:22:39 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef LISPSORT_H
|
|
#define LISPSORT_H
|
|
|
|
extern List *lisp_qsort(List *the_list, int (*compare)());
|
|
|
|
#endif /* LISPSORT_H */
|