From b19b90d7068fa40aff782ed93b5f0ffe2944110d Mon Sep 17 00:00:00 2001
From: "Marc G. Fournier" <scrappy@hub.org>
Date: Thu, 19 Sep 1996 20:01:40 +0000
Subject: [PATCH] Just a small change to flesh out the func_ptr typedef
 declaration.

Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
---
 src/backend/include/postgres.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/include/postgres.h b/src/backend/include/postgres.h
index 3b655062457..b014efae26b 100644
--- a/src/backend/include/postgres.h
+++ b/src/backend/include/postgres.h
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1995, Regents of the University of California
  *
- * $Id: postgres.h,v 1.2 1996/08/27 22:00:21 scrappy Exp $
+ * $Id: postgres.h,v 1.3 1996/09/19 20:01:40 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -61,7 +61,7 @@ typedef Oid regproc;
 typedef Oid RegProcedure;
 
 /* ptr to func returning (char *) */
-typedef char *	((*func_ptr)());	
+typedef char *	((*func_ptr)(int, ...));	
 
 
 #define RegProcedureIsValid(p)  OidIsValid(p)
-- 
GitLab