summaryrefslogtreecommitdiff
path: root/src/include/c.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/c.h')
-rw-r--r--src/include/c.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 40abf99aecf..0a8a129c02c 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.118 2002/04/24 02:12:53 momjian Exp $
+ * $Id: c.h,v 1.119 2002/04/25 02:56:56 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -361,9 +361,12 @@ typedef double float8;
/* typedef Oid is in postgres_ext.h */
-/* unfortunately, both regproc and RegProcedure are used */
+/*
+ * regproc is the type name used in the include/catalog headers, but
+ * RegProcedure is the preferred name in C code.
+ */
typedef Oid regproc;
-typedef Oid RegProcedure;
+typedef regproc RegProcedure;
typedef uint32 TransactionId;
@@ -404,7 +407,6 @@ struct varlena
*/
typedef struct varlena bytea;
typedef struct varlena text;
-typedef struct varlena unknown;
typedef struct varlena BpChar; /* blank-padded char, ie SQL char(n) */
typedef struct varlena VarChar; /* var-length char, ie SQL varchar(n) */