X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/737816cfdd995222e186dcf9c5106bcfb16e333a..41a0af5d6003337f4ca3b3aed6f5757293bddab5:/src/xbt/graphxml_parse.c diff --git a/src/xbt/graphxml_parse.c b/src/xbt/graphxml_parse.c index 1c9a31c332..98fe312d33 100644 --- a/src/xbt/graphxml_parse.c +++ b/src/xbt/graphxml_parse.c @@ -26,12 +26,12 @@ static void nil_function(void) return; } -void_pf_void_t STag_graphxml_graph_fun = nil_function; -void_pf_void_t ETag_graphxml_graph_fun = nil_function; -void_pf_void_t STag_graphxml_node_fun = nil_function; -void_pf_void_t ETag_graphxml_node_fun = nil_function; -void_pf_void_t STag_graphxml_edge_fun = nil_function; -void_pf_void_t ETag_graphxml_edge_fun = nil_function; +void_f_void_t *STag_graphxml_graph_fun = nil_function; +void_f_void_t *ETag_graphxml_graph_fun = nil_function; +void_f_void_t *STag_graphxml_node_fun = nil_function; +void_f_void_t *ETag_graphxml_node_fun = nil_function; +void_f_void_t *STag_graphxml_edge_fun = nil_function; +void_f_void_t *ETag_graphxml_edge_fun = nil_function; YY_BUFFER_STATE xbt_graph_input_buffer; FILE *xbt_graph_file_to_parse; @@ -115,7 +115,7 @@ static int _xbt_graph_parse(void) return xbt_graph_parse_lex(); } -int_pf_void_t xbt_graph_parse = _xbt_graph_parse; +int_f_void_t *xbt_graph_parse = _xbt_graph_parse; void xbt_graph_parse_get_double(double *value,const char *string) {