Made array.h const correct, and dealt with the consequences.
[pspp-builds.git] / src / libpspp / hash.h
index aa4041c4d96b2523712e9252e8606b26c05e0e79..f5d2a5e475b48b51972aedc5c09bd8974e0a1225 100644 (file)
@@ -23,9 +23,9 @@
 #include <stddef.h>
 #include <stdbool.h>
 
-typedef int hsh_compare_func (const void *, const void *, void *aux);
-typedef unsigned hsh_hash_func (const void *, void *aux);
-typedef void hsh_free_func (void *, void *aux);
+typedef int hsh_compare_func (const void *, const void *, const void *aux);
+typedef unsigned hsh_hash_func (const void *, const void *aux);
+typedef void hsh_free_func (void *, const void *aux);
 
 /* Hash table iterator (opaque). */
 struct hsh_iterator