aboutsummaryrefslogtreecommitdiffstats
path: root/man3/malloc.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/malloc.3')
-rw-r--r--man3/malloc.35
1 files changed, 3 insertions, 2 deletions
diff --git a/man3/malloc.3 b/man3/malloc.3
index e0f5250ff7..3291c8c073 100644
--- a/man3/malloc.3
+++ b/man3/malloc.3
@@ -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