projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3023dc6
)
Just a small change to flesh out the func_ptr typedef declaration.
author
Marc G. Fournier
<
[email protected]
>
Thu, 19 Sep 1996 20:01:40 +0000
(20:01 +0000)
committer
Marc G. Fournier
<
[email protected]
>
Thu, 19 Sep 1996 20:01:40 +0000
(20:01 +0000)
Submitted by:
[email protected]
(D'Arcy J.M. Cain)
src/backend/include/postgres.h
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/include/postgres.h
b/src/backend/include/postgres.h
index 3b65506245718855701171736b46635ae21223be..b014efae26bae2faf98d6b82506e62e60575ba5d 100644
(file)
--- 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)