mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 01:40:33 -05:00
Note. all include files that have been hit so far have had extraneous
include files cleaned out and are reduced to...the lowest common
"include file", based on 'cc -Wall -I. test.c', where test.c is:
#include "postgres.h"
#include "<top of branches>" (ie. top of branches this time was utils/fcache2.h)
21 lines
488 B
C
21 lines
488 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* fcache2.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: fcache2.h,v 1.2 1996/11/04 08:53:07 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FCACHE2_H
|
|
#define FCACHE2_H
|
|
|
|
#include <nodes/execnodes.h>
|
|
|
|
extern void
|
|
setFcache(Node *node, Oid foid, List *argList, ExprContext *econtext);
|
|
|
|
#endif /* FCACHE2_H */
|