X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad5365a072943b2b0bacc486fa504e93a99ea940..1fd09fd9b0dace2b6229878981c1b3e12c2a74ab:/include/xbt/graph.h diff --git a/include/xbt/graph.h b/include/xbt/graph.h index 43d2760205..534472df26 100644 --- a/include/xbt/graph.h +++ b/include/xbt/graph.h @@ -36,7 +36,7 @@ XBT_PUBLIC(xbt_edge_t) xbt_graph_get_edge(xbt_graph_t g, xbt_node_t src, xbt_nod XBT_PUBLIC(void) xbt_graph_edge_set_length(xbt_edge_t e, double length); XBT_PUBLIC(double) xbt_graph_edge_get_length(xbt_edge_t e); -XBT_PUBLIC(double)* xbt_graph_get_length_matrix(xbt_graph_t g); +XBT_PUBLIC(double*) xbt_graph_get_length_matrix(xbt_graph_t g); XBT_PUBLIC(void) xbt_graph_free_node(xbt_graph_t g, xbt_node_t n, void_f_pvoid_t *node_free_function , void_f_pvoid_t *edge_free_function); @@ -78,9 +78,9 @@ XBT_PUBLIC(xbt_node_t*) xbt_graph_shortest_paths(xbt_graph_t g); if a cycle is detected an exception is raised */ -xbt_node_t* xbt_graph_topo_sort(xbt_graph_t g); +XBT_PUBLIC(xbt_node_t*) xbt_graph_topo_sort(xbt_graph_t g); -xbt_edge_t* xbt_graph_spanning_tree_prim(xbt_graph_t g); +XBT_PUBLIC(xbt_edge_t*) xbt_graph_spanning_tree_prim(xbt_graph_t g);