summaryrefslogtreecommitdiff
path: root/src/include/nodes/makefuncs.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-01-24 22:50:57 +0000
committerBruce Momjian <bruce@momjian.us>1998-01-24 22:50:57 +0000
commit72295139434d26c6da565faee2f50cb6fa900d43 (patch)
treefe3868a4a1f475cc4d7adbc7ab069052b5d67b20 /src/include/nodes/makefuncs.h
parent27317a0d7c267ef356f7620f00769363007fcb3f (diff)
downloadpostgresql-72295139434d26c6da565faee2f50cb6fa900d43.tar.gz
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r--src/include/nodes/makefuncs.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h
index 6345b60024..f792438701 100644
--- a/src/include/nodes/makefuncs.h
+++ b/src/include/nodes/makefuncs.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: makefuncs.h,v 1.6 1998/01/20 22:12:13 momjian Exp $
+ * $Id: makefuncs.h,v 1.7 1998/01/24 22:49:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,23 +16,20 @@
#include <nodes/primnodes.h>
#include <utils/fcache.h>
-extern Oper *
-makeOper(Oid opno,
+extern Oper * makeOper(Oid opno,
Oid opid,
Oid opresulttype,
int opsize,
FunctionCachePtr op_fcache);
-extern Var *
-makeVar(Index varno,
+extern Var * makeVar(Index varno,
AttrNumber varattno,
Oid vartype,
Index varlevelsup,
Index varnoold,
AttrNumber varoattno);
-extern Resdom *
-makeResdom(AttrNumber resno,
+extern Resdom * makeResdom(AttrNumber resno,
Oid restype,
int reslen,
char *resname,
@@ -40,8 +37,7 @@ makeResdom(AttrNumber resno,
Oid reskeyop,
int resjunk);
-extern Const *
-makeConst(Oid consttype,
+extern Const * makeConst(Oid consttype,
Size constlen,
Datum constvalue,
bool constisnull,