Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update mmalloc to compile with paranoid flags used in simgrid
[simgrid.git] / src / xbt / mmalloc / mrealloc.c
index e2004aa..6e9470b 100644 (file)
@@ -145,6 +145,9 @@ mrealloc (md, ptr, size)
   return (result);
 }
 
+/* Useless prototype to make gcc happy */
+void *realloc (void *ptr, size_t size);
+
 /* 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