a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/grp.c src/hg/lib/grp.c index b2fdd28..aa56605 100644 --- src/hg/lib/grp.c +++ src/hg/lib/grp.c @@ -1,26 +1,25 @@ /* grp.c was originally generated by the autoSql program, which also * generated grp.h and grp.sql. This module links the database and * the RAM representation of objects. */ #include "common.h" #include "linefile.h" #include "dystring.h" #include "jksql.h" #include "grp.h" -static char const rcsid[] = "$Id: grp.c,v 1.6 2008/07/07 18:12:38 larrym Exp $"; void grpStaticLoad(char **row, struct grp *ret) /* Load a row from grp table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->name = row[0]; ret->label = row[1]; ret->priority = atof(row[2]); ret->defaultIsClosed = row[3] ? TRUE : FALSE; } static struct grp *grpLoad(char **row, int fieldCount) /* Load a grp from row fetched with select * from grp * from database. Dispose of this with grpFree(). */