a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/cdsSpec.c src/hg/lib/cdsSpec.c index 458158c..5a067b1 100644 --- src/hg/lib/cdsSpec.c +++ src/hg/lib/cdsSpec.c @@ -1,26 +1,25 @@ /* cdsSpec.c was originally generated by the autoSql program, which also * generated cdsSpec.h and cdsSpec.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 "cdsSpec.h" -static char const rcsid[] = "$Id: cdsSpec.c,v 1.2 2008/05/19 18:16:08 markd Exp $"; void cdsSpecStaticLoad(char **row, struct cdsSpec *ret) /* Load a row from cdsSpec table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->id = row[0]; ret->cds = row[1]; } struct cdsSpec *cdsSpecLoad(char **row) /* Load a cdsSpec from row fetched with select * from cdsSpec * from database. Dispose of this with cdsSpecFree(). */ { struct cdsSpec *ret;