a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/contigAcc.c src/hg/lib/contigAcc.c index 22d01f5..3f60170 100644 --- src/hg/lib/contigAcc.c +++ src/hg/lib/contigAcc.c @@ -1,26 +1,25 @@ /* contigAcc.c was originally generated by the autoSql program, which also * generated contigAcc.h and contigAcc.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 "contigAcc.h" -static char const rcsid[] = "$Id: contigAcc.c,v 1.1 2004/08/20 23:53:38 kate Exp $"; void contigAccStaticLoad(char **row, struct contigAcc *ret) /* Load a row from contigAcc table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->contig = row[0]; ret->acc = row[1]; } struct contigAcc *contigAccLoad(char **row) /* Load a contigAcc from row fetched with select * from contigAcc * from database. Dispose of this with contigAccFree(). */ { struct contigAcc *ret;