a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/vPng.c src/lib/vPng.c index 756349b..300e1f6 100644 --- src/lib/vPng.c +++ src/lib/vPng.c @@ -1,24 +1,23 @@ /* vPng - a virtual graphic object wrapper around an in-memory buffer destined to become a 256-color PNG file. */ #include "common.h" #include "memgfx.h" #include "vGfx.h" #include "vGfxPrivate.h" -static char const rcsid[] = "$Id: vPng.c,v 1.2 2009/08/20 21:36:17 angie Exp $"; struct memPng /* Something that handles a PNG. */ { struct memGfx mg; /* Memory form. This needs to be first field. */ char *fileName; /* PNG file name. */ boolean useTransparency; /* Make background color transparent if TRUE. */ }; void memPngClose(struct memPng **pG) /* Write out and close and free. */ { struct memPng *g = *pG; if (g != NULL) {