Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
now contains xbt_free_f implementation
[simgrid.git] / src / xbt / sysdep.c
index 0c34750..ebb2455 100644 (file)
 #include "portable.h"
 
 
+/** @brief like free 
+    @hideinitializer */
+XBT_PUBLIC(void) xbt_free_f(void* p)
+{
+       free(p);
+}
+
+
 /* TSC (tick-level) timers are said to be unreliable on SMP hosts and thus 
    disabled in SDL source code */