a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/dystring.c src/lib/dystring.c
index 6cb2a2f..1fa6c22 100644
--- src/lib/dystring.c
+++ src/lib/dystring.c
@@ -1,24 +1,23 @@
 /* dystring - dynamically resizing string.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: dystring.c,v 1.25 2009/11/13 19:01:56 kent Exp $";
 
 struct dyString *newDyString(int initialBufSize)
 /* Allocate dynamic string with initial buffer size.  (Pass zero for default) */
 {
 struct dyString *ds;
 AllocVar(ds);
 if (initialBufSize == 0)
     initialBufSize = 512;
 ds->string = needMem(initialBufSize+1);
 ds->bufSize = initialBufSize;
 return ds;
 }
 
 void freeDyString(struct dyString **pDs)
 /* Free up dynamic string. */