summaryrefslogtreecommitdiff
path: root/lib/hash.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-03-15 15:33:21 +0000
committerJim Meyering <jim@meyering.net>1999-03-15 15:33:21 +0000
commit96359cf648358c438cc64603c0fb735c93f310b8 (patch)
treed8af38b8958f78e5d8637b1712142ef13e6e8afa /lib/hash.h
parent855b12df1dfdae9ed485a6a5ec8d3e662c136ac1 (diff)
downloadcoreutils-96359cf648358c438cc64603c0fb735c93f310b8.tar.xz
(hash_insert): Update prototype.
Diffstat (limited to 'lib/hash.h')
-rw-r--r--lib/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hash.h b/lib/hash.h
index 0cbb27e3a..b046bfe9a 100644
--- 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 <meyering@ascend.com>, 1998.
This program is free software; you can redistribute it and/or modify
@@ -99,5 +99,5 @@ void hash_free PARAMS ((Hash_table *));
/* 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 *));