# HG changeset patch # User Jim Meyering # Date 921512001 0 # Node ID 99255b403d749cd0272b4d8be4f985df3375d10f # Parent 8fa1339d0b04d519a2dde2aebaea8c1d22244515 (hash_insert): Update prototype. diff --git a/lib/hash.h b/lib/hash.h --- a/lib/hash.h +++ b/lib/hash.h @@ -1,5 +1,5 @@ /* hash - hashing table processing. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 Free Software Foundation, Inc. Written by Jim Meyering , 1998. This program is free software; you can redistribute it and/or modify @@ -99,5 +99,5 @@ /* Insertion and deletion. */ bool hash_rehash PARAMS ((Hash_table *, unsigned int)); -void *hash_insert PARAMS ((Hash_table *, const void *, bool *)); +void *hash_insert PARAMS ((Hash_table *, const void *)); void *hash_delete PARAMS ((Hash_table *, const void *));