From 1e624dd8c618a0e7cd852b40d2ed02b911ddcc57 Mon Sep 17 00:00:00 2001 From: mquinson Date: Wed, 7 Feb 2007 15:59:57 +0000 Subject: [PATCH] typo in windows DLL cruft git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3101 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/msg/msg.h | 4 ++-- include/surf/surfxml_parse.h | 6 +++--- include/xbt/graph.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/msg/msg.h b/include/msg/msg.h index 22a02cc226..4d12e2dfb7 100644 --- a/include/msg/msg.h +++ b/include/msg/msg.h @@ -31,7 +31,7 @@ XBT_PUBLIC(double) MSG_get_clock(void); /************************** Host handling ***********************************/ XBT_PUBLIC(MSG_error_t) MSG_host_set_data(m_host_t host, void *data); -XBT_PUBLIC(void) *MSG_host_get_data(m_host_t host); +XBT_PUBLIC(void*) MSG_host_get_data(m_host_t host); XBT_PUBLIC(const char *) MSG_host_get_name(m_host_t host); XBT_PUBLIC(m_host_t) MSG_host_self(void); XBT_PUBLIC(int) MSG_get_host_msgload(m_host_t host); @@ -57,7 +57,7 @@ XBT_PUBLIC(int) MSG_process_killall(int reset_PIDs); XBT_PUBLIC(MSG_error_t) MSG_process_change_host(m_process_t process, m_host_t host); -XBT_PUBLIC(void) *MSG_process_get_data(m_process_t process); +XBT_PUBLIC(void*) MSG_process_get_data(m_process_t process); XBT_PUBLIC(MSG_error_t) MSG_process_set_data(m_process_t process, void *data); XBT_PUBLIC(m_host_t) MSG_process_get_host(m_process_t process); XBT_PUBLIC(m_process_t) MSG_process_from_PID(int PID); diff --git a/include/surf/surfxml_parse.h b/include/surf/surfxml_parse.h index 5b5bb25483..53d8e3d89b 100644 --- a/include/surf/surfxml_parse.h +++ b/include/surf/surfxml_parse.h @@ -40,10 +40,10 @@ XBT_PUBLIC(void) surf_parse_get_double(double *value,const char *string); /* Prototypes of the functions offered by flex */ XBT_PUBLIC(int) surf_parse_lex(void); XBT_PUBLIC(int) surf_parse_get_lineno(void); -XBT_PUBLIC(FILE) *surf_parse_get_in(void); -XBT_PUBLIC(FILE) *surf_parse_get_out(void); +XBT_PUBLIC(FILE*) surf_parse_get_in(void); +XBT_PUBLIC(FILE*) surf_parse_get_out(void); XBT_PUBLIC(int) surf_parse_get_leng(void); -XBT_PUBLIC(char) *surf_parse_get_text(void); +XBT_PUBLIC(char*) surf_parse_get_text(void); XBT_PUBLIC(void) surf_parse_set_lineno(int line_number); XBT_PUBLIC(void) surf_parse_set_in(FILE * in_str); XBT_PUBLIC(void) surf_parse_set_out(FILE * out_str); diff --git a/include/xbt/graph.h b/include/xbt/graph.h index 43d2760205..a3a9b6a766 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); -- 2.20.1