Merge "Remove a comment." into main am: 34bc35a3ad

Original change: https://android-review.googlesource.com/c/platform/bionic/+/3341342

Change-Id: Ie5a102875332fac446040cd0b84307c5029bde3b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/libc/include/malloc.h b/libc/include/malloc.h
index 850eeca..ac27467 100644
--- a/libc/include/malloc.h
+++ b/libc/include/malloc.h
@@ -76,11 +76,6 @@
  */
 __nodiscard void* _Nullable realloc(void* _Nullable __ptr, size_t __byte_count) __BIONIC_ALLOC_SIZE(2);
 
-// The reallocarray polyfill is only available when in weak API mode to avoid
-// collisions with existing polyfills. The only known conflict is in libconfuse,
-// so if that's ever fixed upstream the guard could probably be removed.
-// https://github.com/android/ndk/issues/2081
-
 /**
  * [reallocarray(3)](https://man7.org/linux/man-pages/man3/realloc.3.html) resizes
  * allocated memory on the heap.