1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +03:00

Move rbtree.c from src/backend/utils/misc to src/backend/lib.

We have other general-purpose data structures in src/backend/lib, so it
seems like a better home for the red-black tree as well.
This commit is contained in:
Heikki Linnakangas
2014-12-22 17:52:08 +02:00
parent 7f0dccaed6
commit 955557ddcc
6 changed files with 8 additions and 9 deletions

View File

@@ -12,6 +12,6 @@ subdir = src/backend/lib
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
OBJS = ilist.o binaryheap.o pairingheap.o stringinfo.o
OBJS = ilist.o binaryheap.o pairingheap.o rbtree.o stringinfo.o
include $(top_srcdir)/src/backend/common.mk