Index: trunk/src/libcschem/concrete_arc.h =================================================================== --- trunk/src/libcschem/concrete_arc.h (revision 339) +++ trunk/src/libcschem/concrete_arc.h (revision 340) @@ -2,7 +2,9 @@ #define CSCH_CONCRETE_ARC_H #include "libcschem/concrete.h" -typedef struct csch_arc_s { /* type=CSCH_CTYPE_ARC */ +/* type=CSCH_CTYPE_ARC */ + +typedef struct csch_arc_s { csch_chdr_t hdr; csch_oid_t pen; double sang, dang; Index: trunk/src/libcschem/concrete_line.h =================================================================== --- trunk/src/libcschem/concrete_line.h (revision 339) +++ trunk/src/libcschem/concrete_line.h (revision 340) @@ -2,7 +2,9 @@ #define CSCH_CONCRETE_LINE_H #include "libcschem/concrete.h" -typedef struct csch_cline_s { /* type=CSCH_CTYPE_LINE */ +/* type=CSCH_CTYPE_LINE */ + +typedef struct csch_cline_s { csch_chdr_t hdr; csch_oid_t pen; csch_coord_t x1, y1, x2, y2; Index: trunk/src/libcschem/concrete_poly.h =================================================================== --- trunk/src/libcschem/concrete_poly.h (revision 339) +++ trunk/src/libcschem/concrete_poly.h (revision 340) @@ -1,10 +1,11 @@ #ifndef CSCH_CONCRETE_POLY_H #define CSCH_CONCRETE_POLY_H #include "libcschem/concrete.h" - #include "libcschem/vtcoutline.h" -typedef struct csch_cpoly_s { /* type=CSCH_CTYPE_POLY */ + /* type=CSCH_CTYPE_POLY */ + +typedef struct csch_cpoly_s { csch_chdr_t hdr; csch_oid_t pen; csch_vtcoutline_t outline;