aboutsummaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2003-03-13 11:18:53 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2003-03-13 11:18:53 +0000
commitbe074a2dd8247f5cba52b17af013d6fe9bd20731 (patch)
treef7cea1b2bb715b3c3c490c648670b4eb18478523 /lib/libc
parent45f6135194441d57db8a3419f1a270c9b4c25c96 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/wordexp.37
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/gen/wordexp.3 b/lib/libc/gen/wordexp.3
index a1def0569885e..7cddc088e449b 100644
--- a/lib/libc/gen/wordexp.3
+++ b/lib/libc/gen/wordexp.3
@@ -41,6 +41,7 @@
.Fa "wordexp_t * restrict we"
.Fa "int flags"
.Fc
+.Ft void
.Fo wordfree
.Fa "wordexp_t *we"
.Fc
@@ -100,9 +101,9 @@ structure is defined in
as:
.Bd -literal -offset indent
typedef struct {
- size_t we_wordc; /* count of words matched */
- char **we_wordv; /* pointer to list of words */
- size_t we_offs; /* slots to reserve in we_wordv */
+ size_t we_wordc; /* count of words matched */
+ char **we_wordv; /* pointer to list of words */
+ size_t we_offs; /* slots to reserve in we_wordv */
} wordexp_t;
.Ed
.Pp