From: mquinson Date: Tue, 18 Jul 2006 11:50:39 +0000 (+0000) Subject: Try to catch up with last cleanup in the function type naming schema X-Git-Tag: v3.3~2746 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/737816cfdd995222e186dcf9c5106bcfb16e333a?ds=sidebyside Try to catch up with last cleanup in the function type naming schema git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2613 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/xbt/graphxml_parse.c b/src/xbt/graphxml_parse.c index a8463158d8..1c9a31c332 100644 --- a/src/xbt/graphxml_parse.c +++ b/src/xbt/graphxml_parse.c @@ -26,12 +26,12 @@ static void nil_function(void) return; } -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; +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; 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_f_void_t xbt_graph_parse = _xbt_graph_parse; +int_pf_void_t xbt_graph_parse = _xbt_graph_parse; void xbt_graph_parse_get_double(double *value,const char *string) {