diff options
Diffstat (limited to 'manual/memory.texi')
-rw-r--r-- | manual/memory.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manual/memory.texi b/manual/memory.texi index 69c8894602..a51ed42516 100644 --- a/manual/memory.texi +++ b/manual/memory.texi @@ -1864,6 +1864,13 @@ when a replacement @code{malloc} is in use. However, failure to replace these functions typically does not result in crashes or other incorrect application behavior, but may result in static linking failures. +There are other functions (@code{reallocarray}, @code{strdup}, etc.) in +@theglibc{} that are not listed above but return newly allocated memory to +callers. Replacement of these functions is not supported and may produce +incorrect results. @Theglibc{} implementations of these functions call +the replacement allocator functions whenever available, so they will work +correctly with @code{malloc} replacement. + @node Obstacks @subsection Obstacks @cindex obstacks |