a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/convolve/convolve.c src/utils/convolve/convolve.c
index 0a792d1..ba608dc 100644
--- src/utils/convolve/convolve.c
+++ src/utils/convolve/convolve.c
@@ -1,27 +1,26 @@
 /*	convolve - read in a set of probabilities from a histogram
  *	calculate convolutions of those probabilities for higher order
  *	histograms
  */
 #include	"common.h"
 #include	"hash.h"
 #include	"options.h"
 #include	"linefile.h"
 #include	<math.h>
 
 
-static char const rcsid[] = "$Id: convolve.c,v 1.11 2006/03/18 01:49:51 angie Exp $";
 
 /* command line option specifications */
 static struct optionSpec optionSpecs[] = {
     {"count", OPTION_INT},
     {"html", OPTION_BOOLEAN},
     {"logs", OPTION_BOOLEAN},
     {NULL, 0}
 };
 
 static int convolve_count = 4;		/* # of times to convolve	*/
 static boolean html = FALSE;		/* need neat html output	*/
 static boolean logs = FALSE;		/* input data is in logs, not probs */
 
 static void usage()
 {