More constness
[pspp-builds.git] / src / libpspp / hash.h
index f5d2a5e475b48b51972aedc5c09bd8974e0a1225..af1cdacdc82ae8417c37b8c2abd298d3b93d6125 100644 (file)
@@ -43,13 +43,13 @@ unsigned hsh_hash_double (double);
 /* Hash tables. */
 struct hsh_table *hsh_create (int m, hsh_compare_func *,
                               hsh_hash_func *, hsh_free_func *,
-                             void *aux);
+                             const void *aux);
 
 struct pool;
 struct hsh_table *hsh_create_pool (struct pool *pool, int m, 
                                   hsh_compare_func *,
                                   hsh_hash_func *, hsh_free_func *,
-                                  void *aux);
+                                  const void *aux);
 
 void hsh_clear (struct hsh_table *);
 void hsh_destroy (struct hsh_table *);