Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add new function : xbt_dict_is_empty
[simgrid.git] / src / xbt / mmalloc / mcalloc.c
index a033bc0..92f7eb1 100644 (file)
@@ -26,15 +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). */
-
-void*
-calloc (size_t nmemb, size_t size)
-{
-  return (mcalloc ((void*) NULL, nmemb, size));
-}