diff options
Diffstat (limited to 'src/include/utils/hsearch.h')
-rw-r--r-- | src/include/utils/hsearch.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/hsearch.h b/src/include/utils/hsearch.h index bf9ca2128c2..977a843a13f 100644 --- a/src/include/utils/hsearch.h +++ b/src/include/utils/hsearch.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hsearch.h,v 1.7 1998/01/24 22:50:45 momjian Exp $ + * $Id: hsearch.h,v 1.8 1998/02/26 04:44:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -133,7 +133,8 @@ typedef enum extern HTAB *hash_create(int nelem, HASHCTL *info, int flags); extern void hash_destroy(HTAB *hashp); extern void hash_stats(char *where, HTAB *hashp); -extern long * hash_search(HTAB *hashp, char *keyPtr, HASHACTION action, +extern long * +hash_search(HTAB *hashp, char *keyPtr, HASHACTION action, bool *foundPtr); extern long *hash_seq(HTAB *hashp); |