head	1.1;
access
	werner
	shectman;
symbols;
locks; strict;
comment	@ * @;


1.1
date	91.01.29.15.20.19;	author cimarron;	state Exp;
branches;
next	;


desc
@Initial Ported Version
@


1.1
log
@checked in with -k by werner at 1992/01/09 16:56:24
@
text
@/*
 * access/internal.h --
 *	Internal definitions.
 *
 * Identification:
 *	$Header: RCS/internal.h,v 1.1 91/01/29 15:20:19 cimarron Exp $
 */

#ifndef	InternalDefined
#define InternalDefined	1

#include "tmp/postgres.h"
#include "access/skey.h"
#include "utils/rel.h"

/*
 * OperatorRelationFillScanKeyEntry --
 *	Fills the scan key entry for an OPERATOR object.
 */
extern
void
OperatorRelationFillScanKeyEntry ARGS((
	Relation	operatorRelation,
	ObjectId	operatorObjectId,
	ScanKeyEntry	entry
));

#endif	/* !defined(InternalDefined) */
@
