X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf853271ec7465fcde7029895df7101cdd0084b9..652114f194de013d00c485df901535bc83acb73b:/src/xbt/mmalloc/mrealloc.c diff --git a/src/xbt/mmalloc/mrealloc.c b/src/xbt/mmalloc/mrealloc.c index 9ec3273abc..ccd837c969 100644 --- a/src/xbt/mmalloc/mrealloc.c +++ b/src/xbt/mmalloc/mrealloc.c @@ -137,13 +137,12 @@ void *realloc (void *ptr, size_t size); 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). */ + as inside a system library). + FIXME: disabled for now */ -void * -realloc (void *ptr, size_t size) -{ - void* result; +//void * realloc (void *ptr, size_t size) { +// void* result; - result = mrealloc (NULL, ptr, size); - return (result); -} +// result = mrealloc (NULL, ptr, size); +// return (result); +//}