X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=mmalloc%2Fmmalloc.c;h=bc10e3aa93690f91993bbef76a1209497f5263da;hb=719c696df6e88ec0fd23084fb10b80ad997285f2;hp=7c60fe2d57b95bbc9ea8751e8d1df7399800058f;hpb=d70485fb7a2776fbfeccdabc568aa98ab3a80225;p=ocaml-ancient.git diff --git a/mmalloc/mmalloc.c b/mmalloc/mmalloc.c index 7c60fe2..bc10e3a 100644 --- a/mmalloc/mmalloc.c +++ b/mmalloc/mmalloc.c @@ -320,6 +320,8 @@ mmalloc (md, 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 @@ -335,3 +337,5 @@ malloc (size) result = mmalloc ((PTR) NULL, size); return (result); } + +#endif