a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/gfxPoly.c src/lib/gfxPoly.c index 14d48ee..48d5419 100644 --- src/lib/gfxPoly.c +++ src/lib/gfxPoly.c @@ -1,20 +1,19 @@ /* gfxPoly - two dimensional polygon. */ #include "common.h" #include "gfxPoly.h" -static char const rcsid[] = "$Id: gfxPoly.c,v 1.3 2008/09/17 17:56:37 kent Exp $"; struct gfxPoly *gfxPolyNew() /* Create new (empty) polygon */ { struct gfxPoly *poly; AllocVar(poly); return poly; } void gfxPolyFree(struct gfxPoly **pPoly) /* Free up resources associated with polygon */ { struct gfxPoly *poly = *pPoly; if (poly != NULL) {