From: Marc G. Fournier Date: Fri, 18 Oct 1996 17:58:33 +0000 (+0000) Subject: Add prototype for heap_getattr() to quiet compiler X-Git-Tag: REL2_0~430 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c5fa955cdf5999bcb941130f02528090a37981e;p=postgresql Add prototype for heap_getattr() to quiet compiler --- 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 */