summaryrefslogtreecommitdiff
path: root/src/backend/include/postgres.h
diff options
context:
space:
mode:
authorMarc G. Fournier1996-09-23 08:38:45 +0000
committerMarc G. Fournier1996-09-23 08:38:45 +0000
commit9c6135fb15523d54ac073dd815ef9addbed20cf2 (patch)
treeb5996123cb0413a7e5dfa68a81e7adfa21916169 /src/backend/include/postgres.h
parent32620c222e137b43524b0973720b773045c062c3 (diff)
From: Bruce Momjian <[email protected]>
To: Postgres95-development <[email protected]> Subject: [PG95-DEV] postgres.h patch This removes the parameters from the func_ptr prototype in postgres.h in 2.0.
Diffstat (limited to 'src/backend/include/postgres.h')
-rw-r--r--src/backend/include/postgres.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/include/postgres.h b/src/backend/include/postgres.h
index b014efae26..89cebc473b 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.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)