diff options
author | Bruce Momjian | 1999-05-26 12:57:23 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-05-26 12:57:23 +0000 |
commit | 278bbf4572996e4097eac0c0d169dea1616ad0b6 (patch) | |
tree | 240f44ee8338d26ad0ff7ce8d8e9733a0e3880df /src/backend/access/common/Makefile | |
parent | 180186272ac16c74d2a822fee3878e576f265d08 (diff) |
Make functions static or NOT_USED as appropriate.
Diffstat (limited to 'src/backend/access/common/Makefile')
-rw-r--r-- | src/backend/access/common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/common/Makefile b/src/backend/access/common/Makefile index 5b188808e87..00e2562ea44 100644 --- a/src/backend/access/common/Makefile +++ b/src/backend/access/common/Makefile @@ -4,7 +4,7 @@ # Makefile for access/common # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/access/common/Makefile,v 1.12 1998/07/26 04:30:16 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/access/common/Makefile,v 1.13 1999/05/26 12:55:05 momjian Exp $ # #------------------------------------------------------------------------- @@ -17,7 +17,7 @@ ifdef MULTIBYTE CFLAGS+= $(MBFLAGS) endif -OBJS = heaptuple.o heapvalid.o indextuple.o indexvalid.o printtup.o \ +OBJS = heaptuple.o indextuple.o indexvalid.o printtup.o \ scankey.o tupdesc.o all: SUBSYS.o |