a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/index/bptMakeStringToBits64/bptMakeStringToBits64.c src/index/bptMakeStringToBits64/bptMakeStringToBits64.c
index 03cf3e5..a07c718 100644
--- src/index/bptMakeStringToBits64/bptMakeStringToBits64.c
+++ src/index/bptMakeStringToBits64/bptMakeStringToBits64.c
@@ -1,26 +1,25 @@
 /* bptMakeStringToBits64 - Create a B+ tree index with string keys and 64-bit-integer values. 
  * In practice the 64-bit values are often offsets in a file.. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "sqlNum.h"
 #include "localmem.h"
 #include "bPlusTree.h"
 
-static char const rcsid[] = "$Id: bptMakeStringToBits64.c,v 1.3 2009/01/29 19:53:33 mikep Exp $";
 
 int blockSize = 1000;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "bptMakeStringToBits64 - Create a B+ tree index with string keys and unsigned 64-bit-integer \n"
   "values. In practice the 64-bit values are often offsets in a file.\n"
   "usage:\n"
   "   bptMakeStringToBits64 input.tab output.bpt\n"
   "where input.tab is two columns - name/value.\n"
   "options:\n"
   "   -blockSize=N (default %d) Size of block for index purposes\n"
   , blockSize