a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/snof.c src/lib/snof.c
index e4d7cf5..cea5631 100644
--- src/lib/snof.c
+++ src/lib/snof.c
@@ -1,28 +1,27 @@
 /* Snof.c Sorted Name Offset File.
  * This accesses a file of name/offset pairs that are sorted by
  * name.  Does a binary search of file to find the offset given name.
  * Most typically this is used to do a quick lookup given an index file. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "snof.h"
 #include "snofmake.h"
 
-static char const rcsid[] = "$Id: snof.c,v 1.5 2009/09/23 18:42:29 angie Exp $";
 
 void snofClose(struct snof **pSnof)
 /* Close down the index file. */
 {
 struct snof *snof = *pSnof;
 if (snof != NULL)
     {
     if (snof->file != NULL)
         fclose(snof->file);
     if (snof->first != NULL)
         freeMem(snof->first);
     freeMem(snof);
     *pSnof = NULL;
     }
 }