a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/gifcomp.c src/lib/gifcomp.c
index c82e684..7aa88f3 100644
--- src/lib/gifcomp.c
+++ src/lib/gifcomp.c
@@ -44,31 +44,30 @@
  *		length of the string. A null string denotes "end of data"
  *
  *	This format permits a compressed data stream to be embedded within a
  *	non-compressed context.
  *
  * AUTHOR: Steve Wilhite
  *
  * REVISION HISTORY:
  *   Speed tweaked a bit by Jim Kent 8/29/88
  *
  */
 
 #include "common.h"
 #include <setjmp.h>
 
-static char const rcsid[] = "$Id: gifcomp.c,v 1.7 2003/05/21 21:03:22 kent Exp $";
 
 #define UBYTE unsigned char
 
 
 #define LARGEST_CODE	4095
 #define TABLE_SIZE	(8*1024)
 
 static UBYTE gif_byte_buff[256+3];               /* Current block */
 static FILE *gif_file;
 
 static unsigned char *gif_wpt;
 static long gif_wcount;
 
 static jmp_buf recover;