diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:41:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:41:07 +0000 |
commit | 3af6d22bb3850ab2bac67287e3a3d3b0e32868e5 (patch) | |
tree | 3ee7a3ec64525911fa865bb984c86d997d855527 /man2/chdir.2 | |
parent | Adding debian version 6.05.01-1. (diff) | |
download | manpages-3af6d22bb3850ab2bac67287e3a3d3b0e32868e5.tar.xz manpages-3af6d22bb3850ab2bac67287e3a3d3b0e32868e5.zip |
Merging upstream version 6.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'man2/chdir.2')
-rw-r--r-- | man2/chdir.2 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/man2/chdir.2 b/man2/chdir.2 index 5aca7bf..33e7473 100644 --- a/man2/chdir.2 +++ b/man2/chdir.2 @@ -10,7 +10,7 @@ .\" Modified 1997-08-21 by Joseph S. Myers <jsm28@cam.ac.uk> .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com> .\" -.TH chdir 2 2023-03-30 "Linux man-pages 6.05.01" +.TH chdir 2 2023-10-31 "Linux man-pages 6.7" .SH NAME chdir, fchdir \- change working directory .SH LIBRARY @@ -19,16 +19,16 @@ Standard C library .SH SYNOPSIS .nf .B #include <unistd.h> -.PP +.P .BI "int chdir(const char *" path ); .BI "int fchdir(int " fd ); .fi -.PP +.P .RS -4 Feature Test Macro Requirements for glibc (see .BR feature_test_macros (7)): .RE -.PP +.P .BR fchdir (): .nf _XOPEN_SOURCE >= 500 @@ -41,7 +41,7 @@ Feature Test Macro Requirements for glibc (see changes the current working directory of the calling process to the directory specified in .IR path . -.PP +.P .BR fchdir () is identical to .BR chdir (); @@ -92,7 +92,7 @@ Insufficient kernel memory was available. A component of .I path is not a directory. -.PP +.P The general errors for .BR fchdir () are listed below: @@ -115,7 +115,7 @@ POSIX.1-2001, SVr4, 4.4BSD. .SH NOTES The current working directory is the starting point for interpreting relative pathnames (those not starting with \[aq]/\[aq]). -.PP +.P A child process created via .BR fork (2) inherits its parent's current working directory. |