time_r: Add missing declarations on HP-UX 11.
[pspp] / lib / hash.h
index e795cdc836bf4c2b7c33ad96147c18b39a0d8782..5f91e999bd145941c8b5957e9bc9b8c3ad3df4d4 100644 (file)
@@ -88,6 +88,8 @@ void hash_free (Hash_table *);
 /* Insertion and deletion.  */
 bool hash_rehash (Hash_table *, size_t) ATTRIBUTE_WUR;
 void *hash_insert (Hash_table *, const void *) ATTRIBUTE_WUR;
+int hash_insert0 (Hash_table *table, const void *entry,
+                  const void **matched_ent);
 void *hash_delete (Hash_table *, const void *);
 
 #endif