
/*
 *	FCACHE.H
 *
 *	$Header: /general/TFA/unclassified/src/utils/postgres-v3r1/src/lib/H/utils/RCS/fcache.h,v 1.2 1991/09/08 16:21:18 glass Exp $
 */

#ifndef FcacheIncluded
#define FcacheIncluded 1 /* include once only */

typedef char *  ((*func_ptr)());

typedef struct
{
	func_ptr func;
	int typlen;
	int nargs;
	int typbyval;
	ObjectId foid;
}
FunctionCache, *FunctionCachePtr;

#endif FcacheIncluded
