From e4e8cad1f69f7cb0809de491ee9d7b0638ee5053 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 17 Jun 2017 02:09:02 +0200 Subject: [PATCH] fix gcc builds: missing prototype --- src/surf/xml/platf.hpp | 1 + 1 file changed, 1 insertion(+) 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); -- 2.20.1