a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/hgGene.c src/hg/lib/hgGene.c index 44aa798..5ae954d 100644 --- src/hg/lib/hgGene.c +++ src/hg/lib/hgGene.c @@ -1,28 +1,27 @@ /***************************************************************************** * Copyright (C) 2000 Jim Kent. This source code may be freely used * * for personal, academic, and non-profit purposes. Commercial use * * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * *****************************************************************************/ /* hgGene.c was originally generated by the autoSql program, which also * generated hgGene.h and hgGene.sql. This module links the database and the RAM * representation of objects. */ #include "common.h" #include "jksql.h" #include "hgGene.h" -static char const rcsid[] = "$Id: hgGene.c,v 1.5 2005/04/13 06:25:54 markd Exp $"; void geneFinderStaticLoad(char **row, struct geneFinder *ret) /* Load a row from geneFinder table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->id = sqlUnsigned(row[0]); ret->name = row[1]; } struct geneFinder *geneFinderLoad(char **row) /* Load a geneFinder from row fetched with select * from geneFinder * from database. Dispose of this with geneFinderFree(). */ { struct geneFinder *ret;