From: Martin Quinson Date: Sat, 17 Jun 2017 00:09:02 +0000 (+0200) Subject: fix gcc builds: missing prototype X-Git-Tag: v3.16~66 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e4e8cad1f69f7cb0809de491ee9d7b0638ee5053 fix gcc builds: missing prototype --- diff --git a/src/surf/xml/platf.hpp b/src/surf/xml/platf.hpp index 3804abae4d..010e6f0504 100644 --- a/src/surf/xml/platf.hpp +++ b/src/surf/xml/platf.hpp @@ -21,6 +21,7 @@ XBT_PUBLIC(void) surf_parse_open(const char *file); XBT_PUBLIC(void) surf_parse_close(); XBT_PUBLIC(void) surf_parse_assert(bool cond, const char *fmt, ...) XBT_ATTRIB_PRINTF(2,3); XBT_PUBLIC(void) XBT_ATTRIB_NORETURN surf_parse_error(const char *msg,...) XBT_ATTRIB_PRINTF(1,2); +XBT_PUBLIC(void) surf_parse_assert_netpoint(char* hostname, const char* pre, const char* post); XBT_PUBLIC(void) surf_parse_warn(const char *msg,...) XBT_ATTRIB_PRINTF(1,2); XBT_PUBLIC(double) surf_parse_get_double(const char *string);