X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=mmalloc%2Fmrealloc.c;h=28847607437fa74eaed464c16bd4e5feab5c72a2;hb=2f2d5af5cf03640650c8b49933c36665fdf52d61;hp=e2004aaf47b54cb7207f5a0707600eaffb01d214;hpb=d70485fb7a2776fbfeccdabc568aa98ab3a80225;p=ocaml-ancient.git diff --git a/mmalloc/mrealloc.c b/mmalloc/mrealloc.c index e2004aa..2884760 100644 --- a/mmalloc/mrealloc.c +++ b/mmalloc/mrealloc.c @@ -145,6 +145,8 @@ mrealloc (md, ptr, size) return (result); } +#if 0 // RWMJ + /* 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 @@ -161,3 +163,5 @@ realloc (ptr, size) result = mrealloc ((PTR) NULL, ptr, size); return (result); } + +#endif