#ifndef _P_CATALOG_UTILS_H
#define _P_CATALOG_UTILS_H \
  "$Header: RCS/catalog_utils.h,v 1.11 91/08/15 18:01:44 caetta Exp $"

#include "tmp/postgres.h"

#include "access/htup.h"
#include "utils/rel.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "catalog/syscache.h"
    
typedef HeapTuple	Type;
typedef HeapTuple	Operator;

extern Type type(), get_id_type();
extern OID att_typeid(), typeid();
extern int16 tlen();
extern bool tbyval();
extern Relation get_rdesc(), get_rgdesc();
extern char *outstr(), *instr(), *instr1(), *instr2();
extern Operator oper(), right_oper(), left_oper();
extern Name tname();



#endif
