a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/vGif.c src/lib/vGif.c
index e5eb2e3..d26f950 100644
--- src/lib/vGif.c
+++ src/lib/vGif.c
@@ -1,25 +1,24 @@
 /* vGif - a virtual graphic object wrapper around
  * an in-memory buffer destined to become a 
  * 256-color GIF file. */
 
 #include "common.h"
 #include "memgfx.h"
 #include "vGfx.h"
 #include "vGfxPrivate.h"
 
-static char const rcsid[] = "$Id: vGif.c,v 1.6 2010/06/05 19:29:54 braney Exp $";
 
 #ifndef COLOR32
 
 struct memGif
 /* Something that handles a gif. */
     {
     struct memGfx mg;	/* Memory form.  This needs to be first field. */
     char *fileName;	/* Gif file name. */
     boolean useTransparency;
     };
 
 void memGifClose(struct memGif **pG)
 /* Write out and close and free. */
 {
 struct memGif *g = *pG;