]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/futimesat.2
prctl.2: ffix
[thirdparty/man-pages.git] / man2 / futimesat.2
index d4c79729ad2eae20ba3d6ae5349f3948a61bf3ee..a5ed2862b887f9b0601eae5350cb0c021085ab77 100644 (file)
@@ -1,6 +1,6 @@
 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
 .\"
-.\" %%%LICENSE_START(verbatim)
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
@@ -22,8 +22,7 @@
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.\"
-.TH FUTIMESAT 2 2012-05-10 "Linux" "Linux Programmer's Manual"
+.TH FUTIMESAT 2 2017-09-15 "Linux" "Linux Programmer's Manual"
 .SH NAME
 futimesat \- change timestamps of a file relative to a \
 directory file descriptor
@@ -31,16 +30,16 @@ directory file descriptor
 .nf
 .B #include <fcntl.h>           /* Definition of AT_* constants */
 .B #include <sys/time.h>
-.sp
+.PP
 .BI "int futimesat(int " dirfd ", const char *" pathname ,
 .BI "              const struct timeval " times [2]);
 .fi
-.sp
+.PP
 .in -4n
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .in
-.sp
+.PP
 .BR futimesat ():
 _GNU_SOURCE
 .SH DESCRIPTION
@@ -48,13 +47,13 @@ This system call is obsolete.
 Use
 .BR utimensat (2)
 instead.
-
+.PP
 The
 .BR futimesat ()
 system call operates in exactly the same way as
 .BR utimes (2),
 except for the differences described in this manual page.
-
+.PP
 If the pathname given in
 .I pathname
 is relative, then it is interpreted relative to the directory
@@ -64,7 +63,7 @@ referred to by the file descriptor
 the calling process, as is done by
 .BR utimes (2)
 for a relative pathname).
-
+.PP
 If
 .I pathname
 is relative and
@@ -76,7 +75,7 @@ then
 is interpreted relative to the current working
 directory of the calling process (like
 .BR utimes (2)).
-
+.PP
 If
 .I pathname
 is absolute, then
@@ -115,7 +114,7 @@ This system call is nonstandard.
 It was implemented from a specification that was proposed for POSIX.1,
 but that specification was replaced by the one for
 .BR utimensat (2).
-
+.PP
 A similar system call exists on Solaris.
 .SH NOTES
 .SS Glibc notes