From: ellson Date: Tue, 14 Oct 2008 19:40:49 +0000 (+0000) Subject: fix breakage X-Git-Tag: LAST_LIBGRAPH~32^2~3128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b4717da90398088d3d072321ba932b4c0ea653a;p=graphviz fix breakage --- diff --git a/lib/common/types.h b/lib/common/types.h index d6452a6a0..aa3dca4cb 100644 --- a/lib/common/types.h +++ b/lib/common/types.h @@ -44,16 +44,16 @@ extern "C" { typedef int (*qsort_cmpf) (const void *, const void *); typedef int (*bsearch_cmpf) (const void *, const void *); - typedef struct Agraph_s graph_t; + typedef struct Agraph_t graph_t; - typedef struct Agnode_s node_t; - typedef struct Agedge_s edge_t; + typedef struct Agnode_t node_t; + typedef struct Agedge_t edge_t; - typedef struct Agsym_s attrsym_t; + typedef struct Agsym_t attrsym_t; - typedef struct htmllabel_s htmllabel_t; + typedef struct htmllabel_t htmllabel_t; - typedef union inside_s { + typedef union inside_t { struct { pointf* p; double* r; diff --git a/lib/neatogen/neatoprocs.h b/lib/neatogen/neatoprocs.h index bb780c399..e60a8c311 100644 --- a/lib/neatogen/neatoprocs.h +++ b/lib/neatogen/neatoprocs.h @@ -20,7 +20,7 @@ #ifdef __cplusplus extern "C" { #endif -#include +#include "adjust.h" extern void addEdgeLabels(edge_t * e, pointf rp, pointf rq); extern int allow_edits(int);