a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/jkOwnLib/ffAliHelp.c src/jkOwnLib/ffAliHelp.c index 0ff2dae..76f6892 100644 --- src/jkOwnLib/ffAliHelp.c +++ src/jkOwnLib/ffAliHelp.c @@ -1,24 +1,23 @@ /* ffAliHelp - Helper routines for things that produce (rather than just * consume) ffAli type alignments. */ /* Copyright 2000-2003 Jim Kent. All rights reserved. */ #include "common.h" #include "fuzzyFind.h" #include "dnaseq.h" -static char const rcsid[] = "$Id: ffAliHelp.c,v 1.10 2005/11/20 19:24:57 kent Exp $"; void ffCat(struct ffAli **pA, struct ffAli **pB) /* Concatenate B to the end of A. Eat up second list * in process. */ { struct ffAli *a = *pA; struct ffAli *b = *pB; /* If list to add is empty our job is real easy. */ if (b == NULL) return; /* If list to add into is empty, then just switch in the * second list. */ if (a == NULL)