From 737816cfdd995222e186dcf9c5106bcfb16e333a Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 18 Jul 2006 11:50:39 +0000 Subject: [PATCH 1/1] 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 --- src/xbt/graphxml_parse.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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) { -- 2.20.1