summaryrefslogtreecommitdiff
path: root/man3/strdup.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/strdup.3')
-rw-r--r--man3/strdup.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/strdup.3 b/man3/strdup.3
index 4d27c17a..67a0f547 100644
--- a/man3/strdup.3
+++ b/man3/strdup.3
@@ -87,7 +87,7 @@ and can be freed with
The
.BR strndup ()
-function is similar, but only copies at most
+function is similar, but copies at most
\fIn\fP bytes.
If \fIs\fP is longer than \fIn\fP, only \fIn\fP
bytes are copied, and a terminating null byte (\(aq\\0\(aq) is added.
@@ -98,7 +98,7 @@ and
are similar, but use
.BR alloca (3)
to allocate the buffer.
-They are only available when using the GNU
+They are available only when using the GNU
GCC suite, and suffer from the same limitations described in
.BR alloca (3).
.SH RETURN VALUE