From 974f7ae8e15f0f5945d57a47734ff642acf105eb Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Fri, 30 Nov 1990 01:01:14 -0800 Subject: [PATCH] minor changes + typos SCCS-vsn: lib/libc/gen/fts.3 5.8 --- usr/src/lib/libc/gen/fts.3 | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/usr/src/lib/libc/gen/fts.3 b/usr/src/lib/libc/gen/fts.3 index ea4c04b4f1..f68adad06f 100644 --- a/usr/src/lib/libc/gen/fts.3 +++ b/usr/src/lib/libc/gen/fts.3 @@ -3,7 +3,7 @@ .\" .\" %sccs.include.redist.man% .\" -.\" @(#)fts.3 5.7 (Berkeley) %G% +.\" @(#)fts.3 5.8 (Berkeley) %G% .\" .TH FTS 3 "" .UC 7 @@ -85,7 +85,7 @@ typedef struct _ftsent { char *fts_name; /* file name */ short fts_namelen; /* strlen(fts_name) */ short fts_level; /* depth (\-1 to N) */ - long fts_number /* local numeric value */ + long fts_number; /* local numeric value */ void *fts_pointer; /* local address value */ struct ftsent *fts_parent; /* parent directory */ struct ftsent *fts_link; /* cycle or next file structure */ @@ -560,13 +560,17 @@ returns 0 on success, and -1 if an error occurs. .SH ERRORS .I Fts_open may fail and set errno for any of the errors specified for the library -function +functions +.IR open (2) +and .IR malloc (3). .PP .I Fts_close may fail and set errno for any of the errors specified for the library -function -.IR chdir (2). +functions +.IR chdir (2) +and +.IR close (2). .PP .I Fts_read and @@ -574,7 +578,6 @@ and may fail and set errno for any of the errors specified for the library functions .IR chdir (2), -.IR getgroups (2), .IR malloc (3), .IR opendir (3), .IR readdir (3) -- 2.20.1