diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-04-21 15:24:21 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-04-21 15:24:21 +0000 |
commit | f427a49cebae937b58bd921c20803593806f0d90 (patch) | |
tree | 9b34e9c6151a86aa2c4ccd5da3329e545598269f /lib/libc/string/strdup.3 | |
parent | f3b3a991bbd7e54d2e2f1b8c8bbf4eb4d4d22e28 (diff) |
Flesh out libc string function man pages.
Diffstat (limited to 'lib/libc/string/strdup.3')
-rw-r--r-- | lib/libc/string/strdup.3 | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libc/string/strdup.3 b/lib/libc/string/strdup.3 index 73c144d6e4c..457b8322cff 100644 --- a/lib/libc/string/strdup.3 +++ b/lib/libc/string/strdup.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: strdup.3,v 1.7 1999/06/04 19:14:56 aaron Exp $ +.\" $OpenBSD: strdup.3,v 1.8 2000/04/21 15:24:20 aaron Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -46,13 +46,10 @@ .Sh DESCRIPTION The .Fn strdup -function -allocates sufficient memory for a copy -of the string +function allocates sufficient memory for a copy of the string .Fa s , does the copy, and returns a pointer to it. -The pointer may subsequently be used as an -argument to the function +The pointer may subsequently be used as an argument to the function .Xr free 3 . .Pp If insufficient memory is available, |