a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/gifdecomp.c src/lib/gifdecomp.c
index bb610e9..06c50f7 100644
--- src/lib/gifdecomp.c
+++ src/lib/gifdecomp.c
@@ -7,31 +7,30 @@
  * In accordance with the above, I want to credit Steve Wilhite who wrote
  * the code which this is heavily inspired by...
  *
  * GIF and 'Graphics Interchange Format' are trademarks (tm) of
  * Compuserve, Incorporated, an H&R Block Company.
  *
  * Release Notes: This file contains a decoder routine for GIF images
  * which is similar, structurally, to the original routine by Steve Wilhite.
  * It is, however, somewhat noticably faster in most cases.
  *
  */
 
 #include "common.h"
 #include "gifcodes.h"
 
-static char const rcsid[] = "$Id: gifdecomp.c,v 1.3 2003/05/06 07:33:42 kate Exp $";
 
 
 /* extern int gif_get_byte()
  *
  *   - This external (machine specific) function is expected to return
  * either the next byte from the GIF file, or a negative number, as
  * defined in gifcodes.h.
  */
 extern int gif_get_byte();
 
 /* extern int gif_out_line(pixels, linelen)
  *     UBYTE pixels[];
  *     int linelen;
  *
  *   - This function takes a full line of pixels (one byte per pixel) and