/*----------------------------------------------------------------
 *   FILE
 *	fmgrtab.h
 *
 *   DESCRIPTION
 *
 *
 *   NOTES
 *
 *   IDENTIFICATION
 *	/usr/local/devel/postgres-v4r2/src/backend/utils/RCS/fmgrtab.h,v 1.1 1993/01/05 03:02:00 aoki Exp
 *----------------------------------------------------------------
 */

#ifndef FmgrtabIncluded
#define FmgrtabIncluded 1	/* Include this file only once */

#include "tmp/postgres.h"	/* for ObjectId */
#include "fmgr.h"

typedef struct {
	ObjectId	proid;
	uint16		nargs;
	func_ptr	func;
} FmgrCall;

extern FmgrCall	*fmgr_isbuiltin ARGS((ObjectId id));

#endif /* FmgrtabIncluded */
