]> granicus.if.org Git - postgresql/commitdiff
Just a small change to flesh out the func_ptr typedef declaration.
authorMarc G. Fournier <scrappy@hub.org>
Thu, 19 Sep 1996 20:01:40 +0000 (20:01 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Thu, 19 Sep 1996 20:01:40 +0000 (20:01 +0000)
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)

src/backend/include/postgres.h

index 3b65506245718855701171736b46635ae21223be..b014efae26bae2faf98d6b82506e62e60575ba5d 100644 (file)
@@ -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)