mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 16:48:17 -05:00
18 lines
496 B
C
18 lines
496 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* fastpath.h
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: fastpath.h,v 1.12 2001/11/05 17:46:36 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FASTPATH_H
|
|
#define FASTPATH_H
|
|
|
|
extern int HandleFunctionRequest(void);
|
|
|
|
#endif /* FASTPATH_H */
|