]> granicus.if.org Git - postgresql/commitdiff
From: Bruce Momjian <maillist@candle.pha.pa.us>
authorMarc G. Fournier <scrappy@hub.org>
Mon, 23 Sep 1996 08:38:45 +0000 (08:38 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 23 Sep 1996 08:38:45 +0000 (08:38 +0000)
To: Postgres95-development <pg95-dev@ki.net>
Subject: [PG95-DEV] postgres.h patch

This removes the parameters from the func_ptr prototype in postgres.h in
2.0.

src/backend/include/postgres.h

index b014efae26bae2faf98d6b82506e62e60575ba5d..89cebc473b56d89e048ad8984ce4100c9b57e724 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1995, Regents of the University of California
  *
- * $Id: postgres.h,v 1.3 1996/09/19 20:01:40 scrappy Exp $
+ * $Id: postgres.h,v 1.4 1996/09/23 08:38:45 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -61,7 +61,7 @@ typedef Oid regproc;
 typedef Oid RegProcedure;
 
 /* ptr to func returning (char *) */
-typedef char * ((*func_ptr)(int, ...));        
+typedef char * ((*func_ptr)());        
 
 
 #define RegProcedureIsValid(p)  OidIsValid(p)