summaryrefslogtreecommitdiffstats
path: root/man3/opendir.3
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3/opendir.315
1 files changed, 7 insertions, 8 deletions
diff --git a/man3/opendir.3 b/man3/opendir.3
index 4ecbd62..5c8fcca 100644
--- a/man3/opendir.3
+++ b/man3/opendir.3
@@ -10,7 +10,7 @@
.\" Modified Sat Jul 24 18:46:01 1993 by Rik Faith (faith@cs.unc.edu)
.\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl)
.\" 2007-07-30 Ulrich Drepper <drepper@redhat.com>: document fdopendir().
-.TH opendir 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH opendir 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
opendir, fdopendir \- open a directory
.SH LIBRARY
@@ -20,16 +20,16 @@ Standard C library
.nf
.B #include <sys/types.h>
.B #include <dirent.h>
-.PP
+.P
.BI "DIR *opendir(const char *" name );
.BI "DIR *fdopendir(int " fd );
.fi
-.PP
+.P
.RS -4
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.RE
-.PP
+.P
.BR fdopendir ():
.nf
Since glibc 2.10:
@@ -43,7 +43,7 @@ The
function opens a directory stream corresponding to the
directory \fIname\fP, and returns a pointer to the directory stream.
The stream is positioned at the first entry in the directory.
-.PP
+.P
The
.BR fdopendir ()
function
@@ -104,7 +104,6 @@ T{
.BR fdopendir ()
T} Thread safety MT-Safe
.TE
-.sp 1
.SH STANDARDS
POSIX.1-2008.
.SH STANDARDS
@@ -118,10 +117,10 @@ glibc 2.4.
.SH NOTES
Filename entries can be read from a directory stream using
.BR readdir (3).
-.PP
+.P
The underlying file descriptor of the directory stream can be obtained using
.BR dirfd (3).
-.PP
+.P
The
.BR opendir ()
function sets the close-on-exec flag for the file descriptor underlying the