utime: Fix a test failure on macOS 10.13.
[gnulib.git] / doc / glibc-functions / futimesat.texi
blob537bf42020ef594e7e827b9d5dcd45c5ecf08765
1 @node futimesat
2 @subsection @code{futimesat}
3 @findex futimesat
5 Documentation:@* @uref{https://www.kernel.org/doc/man-pages/online/pages/man2/futimesat.2.html,,man futimesat}
7 Gnulib module: ---
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 This function is missing on some platforms:
17 glibc 2.3.6, Mac OS X 10.13, FreeBSD 6.0, NetBSD 9.0, OpenBSD 6.7, Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin 1.5.x, mingw, MSVC 14, Android 7.1.
18 @item
19 On some platforms, this function mis-handles trailing slash:
20 Solaris 9.
21 @item
22 This function cannot set full timestamp resolution.  Use
24 @example
25 file ? utimensat(fd, file, times, 0)
26      : futimens(fd, times)
27 @end example
29 @noindent or the gnulib module @code{fdutimensat}, instead.
30 @end itemize