X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash.h;h=06e4d084ed77feb31f16496cb2b6312d5b643b54;hb=9f472ebb86d3a1b4903bdde1c1371add0b70669a;hp=f5d2a5e475b48b51972aedc5c09bd8974e0a1225;hpb=a1a4228b112a6aca97fef5aaaf9ffa21271a1f72;p=pspp-builds.git diff --git a/src/libpspp/hash.h b/src/libpspp/hash.h index f5d2a5e4..06e4d084 100644 --- a/src/libpspp/hash.h +++ b/src/libpspp/hash.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -43,13 +42,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 *);