malloc.3: Minor tweaks to Vegard Nossum's patch

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2020-02-08 23:27:05 +01:00
parent 813d606b00
commit 9ec6412745
1 changed files with 3 additions and 2 deletions

View File

@ -217,9 +217,10 @@ The
.BR realloc ()
function returns a pointer to the newly allocated memory, which is suitably
aligned for any built-in type, or NULL if the request failed.
The pointer may be the same as
The returned pointer may be the same as
.IR ptr
if the allocation was not moved (e.g. there was room to expand the allocation in-place), or different from
if the allocation was not moved
(e.g., there was room to expand the allocation in-place), or different from
.IR ptr
if the allocation was moved to a new address.
If