a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/retroMrnaInfo.c src/hg/lib/retroMrnaInfo.c index e4a5792..2b79280 100644 --- src/hg/lib/retroMrnaInfo.c +++ src/hg/lib/retroMrnaInfo.c @@ -1,26 +1,25 @@ /* retroMrnaInfo.c was originally generated by the autoSql program, which also * generated retroMrnaInfo.h and retroMrnaInfo.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 "retroMrnaInfo.h" -static char const rcsid[] = "$Id: retroMrnaInfo.c,v 1.3 2008/08/10 00:06:48 baertsch Exp $"; int sqlSignedForgiving(char *s) /* Convert string to signed integer. Unlike atol assumes * all of string is number. */ { int res = 0; char *p, *p0 = s; if (*p0 == '-') p0++; p = p0; while ((*p >= '0') && (*p <= '9')) { res *= 10; res += *p - '0';