X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash.h;h=8ba77a9845cf73a8478b26d7bc5831197403a641;hb=5fd22ca7771c8175ef05e91e1194c3c4096337f4;hp=e426483aaf10595f0a534098a36b98ade4ad18e8;hpb=2322678e8fddbbf158b01b2720db2636404bba3b;p=pspp-builds.git diff --git a/src/libpspp/hash.h b/src/libpspp/hash.h index e426483a..8ba77a98 100644 --- a/src/libpspp/hash.h +++ b/src/libpspp/hash.h @@ -62,7 +62,7 @@ void *hsh_first (struct hsh_table *, struct hsh_iterator *); void *hsh_next (struct hsh_table *, struct hsh_iterator *); /* Search and insertion with assertion. */ -#if GLOBAL_DEBUGGING +#if DEBUGGING void hsh_force_insert (struct hsh_table *, void *); void *hsh_force_find (struct hsh_table *, const void *); void hsh_force_delete (struct hsh_table *, const void *); @@ -76,7 +76,7 @@ void hsh_force_delete (struct hsh_table *, const void *); size_t hsh_count (struct hsh_table *); /* Debugging. */ -#if GLOBAL_DEBUGGING +#if DEBUGGING void hsh_dump (struct hsh_table *); #endif