Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
prevent warining for undocumented (because internal) enum members when
[simgrid.git] / src / xbt / xbt_main.c
index 4616949..615ad8d 100644 (file)
@@ -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);
 }