From: erg Date: Thu, 10 Feb 2005 23:12:00 +0000 (+0000) Subject: Baby step toward removing duplicate types: define pointf as an alias X-Git-Tag: LAST_LIBGRAPH~32^2~7945 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f38a554785e5c39eb0b25dd35ae252806627170;p=graphviz Baby step toward removing duplicate types: define pointf as an alias for Ppoint_t from pathplan. --- diff --git a/lib/common/types.h b/lib/common/types.h index b039ffed6..b1710403d 100644 --- a/lib/common/types.h +++ b/lib/common/types.h @@ -45,9 +45,7 @@ extern "C" { int x, y; } point; - typedef struct pointf { - double x, y; - } pointf; + typedef Ppoint_t pointf; typedef struct box { point LL, UR;