Avoid use of <assert.h>, as the GNU Coding Standards hint that one
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 23 Nov 2002 07:02:40 +0000 (07:02 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 23 Nov 2002 07:02:40 +0000 (07:02 +0000)
commitdda6605f28845d55af9d12255b3b1fe8f8759741
treea9048caf320e2578071fcf27daefe81e8808b640
parent232b8d5dff5656b480c6dfe6294735e271477fd8
Avoid use of <assert.h>, as the GNU Coding Standards hint that one
should use `if (! x) abort ();' rather than `assert (x);', and anyway
it's one less thing to worry about configuring.  (hash_lookup,
hash_get_first, hash_get_next, hash_find_entry, hash_rehash,
hash_insert): Use abort rather than assert.
lib/hash.c