a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/hash.c src/lib/hash.c
index 4fc097d..320b360 100644
--- src/lib/hash.c
+++ src/lib/hash.c
@@ -1,27 +1,26 @@
 /* Hash.c - implements hashing.  See hash.h for usage comments.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "localmem.h"
 #include "hash.h"
 #include "obscure.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: hash.c,v 1.51 2009/11/10 22:46:19 angie Exp $";
 
 /*
  * Hash a string key.  This code is taken from Tcl interpreter. I was borrowed
  * after discovering a lot of collisions and poor utilization of the table
  * when hashing accessions.
  *
  * This function was compared to Bob Jenkins' lookup2 hash function and
  * (http://burtleburtle.net/bob/hash/) and Paul Hsieh's SuperFast
  * hash function (http://www.azillionmonkeys.com/qed/hash.html).
  * Both of those functions provided better utilization of the table,
  * but were also more expensive, so the Tcl function was used.
  * If hashing of binary keys is implemented, SuperFast hash should
  * be considered.
  *
  * for an explanation of this function, see HashStringKey() in the