1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Attached are the C-routines that implement a BIT and BIT VARYING type.

Adriaan Joubert
This commit is contained in:
Bruce Momjian
1999-11-29 22:34:36 +00:00
parent 47e51683e6
commit 1f747c6722
6 changed files with 1213 additions and 0 deletions

10
contrib/bit/Makefile Normal file
View File

@ -0,0 +1,10 @@
CFLAGS = -g
varbit: vartest.o varbit.o
$(CC) $(CFLAGS) -o $@ $^
varbit.o: varbit.c varbit.h
vartest.o: vartest.c varbit.h
clean:
rm -f *.o varbit