a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/jkOwnLib/gfPcrLib.c src/jkOwnLib/gfPcrLib.c
index 1cfc30a..da8fcdb 100644
--- src/jkOwnLib/gfPcrLib.c
+++ src/jkOwnLib/gfPcrLib.c
@@ -1,31 +1,30 @@
 /* gfPcrLib - Routines to help do in silico PCR.
  * Copyright 2004-2005 Jim Kent.  All rights reserved. */
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "dystring.h"
 #include "fa.h"
 #include "net.h"
 #include "genoFind.h"
 #include "sqlNum.h"
 #include "gfInternal.h"
 #include "gfPcrLib.h"
 
-static char const rcsid[] = "$Id: gfPcrLib.c,v 1.13 2010/05/15 06:28:15 galt Exp $";
 
 /**** Input and Output Handlers *****/
 
 void gfPcrOutputFree(struct gfPcrOutput **pOut)
 /* Free up a gfPcrOutput structure. */
 {
 struct gfPcrOutput *out = *pOut;
 if (pOut != NULL)
     {
     freeMem(out->name);
     freeMem(out->fPrimer);
     freeMem(out->rPrimer);
     freeMem(out->seqName);
     freeMem(out->dna);
     freez(pOut);