diff options
| author | Bruce Momjian <bruce@momjian.us> | 2000-06-09 01:44:34 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2000-06-09 01:44:34 +0000 |
| commit | 8c1d09d591c446aa777668497abd91a60c26dc97 (patch) | |
| tree | f8d534926aefb0f366da2a916b812b29e50fcc63 /src/include/nodes/pg_list.h | |
| parent | fb070464c1907bfea7c4f15fddf6c6c6f034042c (diff) | |
| download | postgresql-8c1d09d591c446aa777668497abd91a60c26dc97.tar.gz | |
Inheritance overhaul by Chris Bitmead <chris@bitmead.com>
Diffstat (limited to 'src/include/nodes/pg_list.h')
| -rw-r--r-- | src/include/nodes/pg_list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h index c68f0659fa..a0e9881dc8 100644 --- a/src/include/nodes/pg_list.h +++ b/src/include/nodes/pg_list.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_list.h,v 1.17 2000/04/12 17:16:40 momjian Exp $ + * $Id: pg_list.h,v 1.18 2000/06/09 01:44:26 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -118,6 +118,7 @@ extern void set_nth(List *l, int n, void *elem); extern List *set_difference(List *list1, List *list2); extern List *set_differencei(List *list1, List *list2); +extern List *lreverse(List *l); extern List *LispUnion(List *list1, List *list2); extern List *LispUnioni(List *list1, List *list2); |
