]> granicus.if.org Git - postgresql/commitdiff
Add prototype for heap_getattr() to quiet compiler
authorMarc G. Fournier <scrappy@hub.org>
Fri, 18 Oct 1996 17:58:33 +0000 (17:58 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 18 Oct 1996 17:58:33 +0000 (17:58 +0000)
src/include/access/heaptuple.h [new file with mode: 0644]

diff --git a/src/include/access/heaptuple.h b/src/include/access/heaptuple.h
new file mode 100644 (file)
index 0000000..7dcbd60
--- /dev/null
@@ -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 */