a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/tabRow.c src/lib/tabRow.c
index d94d572..0d61025 100644
--- src/lib/tabRow.c
+++ src/lib/tabRow.c
@@ -1,23 +1,22 @@
 /* tabRow - a row from a database or a tab-separated file held in
  * memory.   Just a light wrapper around an array of strings. 
  * Also some routines to convert slLines to tabRows. */
 
 #include "common.h"
 #include "tabRow.h"
 
-static char const rcsid[] = "$Id: tabRow.c,v 1.4 2008/09/17 17:56:38 kent Exp $";
 
 struct tabRow *tabRowNew(int colCount)
 /* Return new row. */
 {
 struct tabRow *row = needMem(sizeof(*row) + colCount*sizeof(char*));
 row->colCount = colCount;
 return row;
 }
 
 int tabRowMaxColCount(struct tabRow *rowList)
 /* Return largest column count */
 {
 int maxCount = 0;
 struct tabRow *row;
 for (row = rowList; row != NULL; row = row->next)