From: Arnaud Giersch Date: Fri, 11 Apr 2014 09:11:48 +0000 (+0200) Subject: Cosmetics: XBT_PUBLIC is not needed here. X-Git-Tag: v3_11~120^2~14 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ff980590b46975003092ac088ed823e4b3a38591?hp=fc35d943e1d39d2511d0aa870be417d2bc714d6b Cosmetics: XBT_PUBLIC is not needed here. --- diff --git a/src/xbt/xbt_main.c b/src/xbt/xbt_main.c index 4616949b7c..615ad8d16b 100644 --- a/src/xbt/xbt_main.c +++ b/src/xbt/xbt_main.c @@ -159,13 +159,13 @@ void xbt_exit() /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */ /** @brief like free, but you can be sure that it is a function */ -XBT_PUBLIC(void) xbt_free_f(void *p) +void xbt_free_f(void *p) { free(p); } /** @brief should be given a pointer to pointer, and frees the second one */ -XBT_PUBLIC(void) xbt_free_ref(void *d) +void xbt_free_ref(void *d) { free(*(void **) d); }