624f4b612627304cc2424be2d1ab7a314ab651a2
kent
  Tue May 27 10:43:34 2014 -0700
Adding spacing for readability around some copyrights notices that needed it.
diff --git src/lib/gfxPoly.c src/lib/gfxPoly.c
index 48d5419..d28ef09 100644
--- src/lib/gfxPoly.c
+++ src/lib/gfxPoly.c
@@ -1,16 +1,17 @@
 /* gfxPoly - two dimensional polygon. */
+
 #include "common.h"
 #include "gfxPoly.h"
 
 
 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 */
 {