X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f2d062a16daf5602b56944a78c51c36ae317a7fa..4c04d8355923f8323a1a3195fe3b73ac08b984ea:/src/xbt/mmalloc/mcalloc.c diff --git a/src/xbt/mmalloc/mcalloc.c b/src/xbt/mmalloc/mcalloc.c index 6c26022a04..92f7eb16e3 100644 --- a/src/xbt/mmalloc/mcalloc.c +++ b/src/xbt/mmalloc/mcalloc.c @@ -26,14 +26,3 @@ mcalloc (void *md, register size_t nmemb, register size_t size) } return (result); } - -/* When using this package, provide a version of malloc/realloc/free built - on top of it, so that if we use the default sbrk() region we will not - collide with another malloc package trying to do the same thing, if - the application contains any "hidden" calls to malloc/realloc/free (such - as inside a system library). - FIXME: disabled for now */ - -//void* calloc (size_t nmemb, size_t size) { -// return (mcalloc ((void*) NULL, nmemb, size)); -//}