From 1c5fa955cdf5999bcb941130f02528090a37981e Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Fri, 18 Oct 1996 17:58:33 +0000 Subject: [PATCH] Add prototype for heap_getattr() to quiet compiler --- src/include/access/heaptuple.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/include/access/heaptuple.h diff --git a/src/include/access/heaptuple.h b/src/include/access/heaptuple.h new file mode 100644 index 0000000000..7dcbd60e60 --- /dev/null +++ b/src/include/access/heaptuple.h @@ -0,0 +1,22 @@ +/*------------------------------------------------------------------------- + * + * heaptuple.h-- + * + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: heaptuple.h,v 1.1 1996/10/18 17:58:33 scrappy Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef HEAPTUPLE_H +#define HEAPTUPLE_H + +extern char *heap_getattr(HeapTuple tup, + Buffer b, + int attnum, + TupleDesc tupleDesc, + bool *isnull); + +#endif /* HEAP_TUPLE_H */