/*-------------------------------------------------------------------------
 *
 * fmgrtab.h--
 *    
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * fmgrtab.h,v 1.1.1.1 1994/11/07 05:19:46 andrew Exp
 *
 *-------------------------------------------------------------------------
 */
#ifndef FMGRTAB_H
#define FMGRTAB_H

#include "postgres.h"		/* for ObjectId */
#include "fmgr.h"		/* genearated by Gen_fmgrtab.sh */

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

extern FmgrCall	*fmgr_isbuiltin(Oid id);

#endif	/* FMGRTAB_H */
