a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/gifwrite.c src/lib/gifwrite.c index be39687..76149a1 100644 --- src/lib/gifwrite.c +++ src/lib/gifwrite.c @@ -1,23 +1,22 @@ /* writegif.c - stuff to write out a GIF file. See also comprs.c */ #ifndef USE_PNG #include "common.h" #include "memgfx.h" #include "gifcodes.h" -static char const rcsid[] = "$Id: gifwrite.c,v 1.9 2010/06/05 19:29:53 braney Exp $"; static char gifsig[] = "GIF87a"; // GIF Graphic Control Extension, for making the background color transparent: static struct gif_gce { unsigned char extensionIntroducer, graphicControlLabel, blockSize; unsigned char flags; unsigned char delayTimeLo,delayTimeHi; unsigned char transparentColorIndex; unsigned char blockTerminator; } gce = {0x21, 0xF9, 0x04, // fixed bytes from spec 0x01, // transparency on (no user input or disposal options) 0x00, 0x00, // no animation delay time 0x00, // color index 0 (white) is transparent