From: cherierm Date: Wed, 7 Feb 2007 15:54:48 +0000 (+0000) Subject: now contains xbt_free_f implementation X-Git-Tag: v3.3~2259 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4e213dc3614ff1ac4adb8432cc5bd387a322ca95 now contains xbt_free_f implementation git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3100 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/xbt/sysdep.c b/src/xbt/sysdep.c index 0c347504db..ebb24551b5 100644 --- a/src/xbt/sysdep.c +++ b/src/xbt/sysdep.c @@ -15,6 +15,14 @@ #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 */