summaryrefslogtreecommitdiff
path: root/src/include/utils/catcache.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/utils/catcache.h
parent27317a0d7c267ef356f7620f00769363007fcb3f (diff)
downloadpostgresql-72295139434d26c6da565faee2f50cb6fa900d43.tar.gz
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/utils/catcache.h')
-rw-r--r--src/include/utils/catcache.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/include/utils/catcache.h b/src/include/utils/catcache.h
index d84da610ec..81215d0987 100644
--- a/src/include/utils/catcache.h
+++ b/src/include/utils/catcache.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: catcache.h,v 1.8 1997/09/08 21:54:52 momjian Exp $
+ * $Id: catcache.h,v 1.9 1998/01/24 22:50:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -63,18 +63,14 @@ typedef struct catcache
extern struct catcache *Caches;
extern GlobalMemory CacheCxt;
-extern void
-CatalogCacheIdInvalidate(int cacheId, Index hashIndex,
+extern void CatalogCacheIdInvalidate(int cacheId, Index hashIndex,
ItemPointer pointer);
extern void ResetSystemCache(void);
-extern CatCache *
-InitSysCache(char *relname, char *indname, int id, int nkeys,
+extern CatCache * InitSysCache(char *relname, char *indname, int id, int nkeys,
int key[], HeapTuple (*iScanfuncP) ());
-extern HeapTuple
-SearchSysCache(struct catcache * cache, Datum v1, Datum v2,
+extern HeapTuple SearchSysCache(struct catcache * cache, Datum v1, Datum v2,
Datum v3, Datum v4);
-extern void
-RelationInvalidateCatalogCacheTuple(Relation relation,
+extern void RelationInvalidateCatalogCacheTuple(Relation relation,
HeapTuple tuple, void (*function) ());
#endif /* CATCACHE_H */