diff options
Diffstat (limited to 'src/include/access/hio.h')
-rw-r--r-- | src/include/access/hio.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/access/hio.h b/src/include/access/hio.h index 27a3bdb1812..05c9dc330c9 100644 --- a/src/include/access/hio.h +++ b/src/include/access/hio.h @@ -1,24 +1,25 @@ /*------------------------------------------------------------------------- * * hio.h-- - * POSTGRES heap access method input/output definitions. + * POSTGRES heap access method input/output definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hio.h,v 1.3 1996/11/05 10:37:05 scrappy Exp $ + * $Id: hio.h,v 1.4 1997/09/07 04:55:56 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef HIO_H +#ifndef HIO_H #define HIO_H #include <access/htup.h> #include <utils/rel.h> -extern void RelationPutHeapTuple(Relation relation, BlockNumber blockIndex, - HeapTuple tuple); -extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple); +extern void +RelationPutHeapTuple(Relation relation, BlockNumber blockIndex, + HeapTuple tuple); +extern void RelationPutHeapTupleAtEnd(Relation relation, HeapTuple tuple); -#endif /* HIO_H */ +#endif /* HIO_H */ |