summaryrefslogtreecommitdiffstats
path: root/upstream/debian-unstable/man3/fpathconf.3
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
commit932e4432596447eb9331cc2a2bb74a26a35b4efc (patch)
tree95161711ea07fd64f0c82d6e7943024c033dd5a8 /upstream/debian-unstable/man3/fpathconf.3
parentAdding debian version 4.22.0-1. (diff)
downloadmanpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.tar.xz
manpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.zip
Merging upstream version 4.23.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'upstream/debian-unstable/man3/fpathconf.3')
-rw-r--r--upstream/debian-unstable/man3/fpathconf.313
1 files changed, 6 insertions, 7 deletions
diff --git a/upstream/debian-unstable/man3/fpathconf.3 b/upstream/debian-unstable/man3/fpathconf.3
index 61951972..982483cb 100644
--- a/upstream/debian-unstable/man3/fpathconf.3
+++ b/upstream/debian-unstable/man3/fpathconf.3
@@ -20,7 +20,7 @@
.\" _PC_SYMLINK_MAX,
.\" _PC_2_SYMLINKS
.\"
-.TH fpathconf 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH fpathconf 3 2024-05-02 "Linux man-pages 6.8"
.SH NAME
fpathconf, pathconf \- get configuration values for files
.SH LIBRARY
@@ -29,7 +29,7 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <unistd.h>
-.PP
+.P
.BI "long fpathconf(int " fd ", int " name );
.BI "long pathconf(const char *" path ", int " name );
.fi
@@ -39,13 +39,13 @@ gets a value for the configuration option
.I name
for the open file descriptor
.IR fd .
-.PP
+.P
.BR pathconf ()
gets a value for configuration option
.I name
for the filename
.IR path .
-.PP
+.P
The corresponding macros defined in
.I <unistd.h>
are minimum values; if an application wants to take advantage of values
@@ -54,7 +54,7 @@ which may change, a call to
or
.BR pathconf ()
can be made, which may yield more liberal results.
-.PP
+.P
Setting
.I name
equal to one of the following constants returns the following
@@ -252,7 +252,6 @@ T{
.BR pathconf ()
T} Thread safety MT-Safe
.TE
-.sp 1
.SH STANDARDS
POSIX.1-2008.
.SH HISTORY
@@ -263,7 +262,7 @@ Files with name lengths longer than the value returned for
equal to
.B _PC_NAME_MAX
may exist in the given directory.
-.PP
+.P
Some returned values may be huge; they are not suitable for allocating
memory.
.SH SEE ALSO