a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/cda.c src/lib/cda.c
index a60c56c..88a0a82 100644
--- src/lib/cda.c
+++ src/lib/cda.c
@@ -1,29 +1,28 @@
 /* cda.c - cDNA Alignment structure.  This stores all the info except
  * the bases themselves on an cDNA alignment. 
  * 
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "dnautil.h"
 #include "memgfx.h"
 #include "sig.h"
 #include "fuzzyFind.h"
 #include "cda.h"
 
-static char const rcsid[] = "$Id: cda.c,v 1.6 2003/05/06 07:33:41 kate Exp $";
 
 char *cdaLoadString(FILE *f)
 /* Load in a string from CDA file. */
 {
 UBYTE size;
 char *s;
 if (!readOne(f, size))
     return NULL;
 s = needMem(size+1);
 mustRead(f, s, size);
 return s;
 }
 
 static void cdaWriteString(FILE *f, char *s)
 /* Write string out to CDA file. */