fchmod-tests, fchmodat tests, lchmod tests: Add more tests.
[gnulib.git] / doc / glibc-functions / mkstemps.texi
blobbe9351f9709fca4f62764c8b1dd33ada6bad0c79
1 @node mkstemps
2 @subsection @code{mkstemps}
3 @findex mkstemps
5 Documentation:@* @uref{https://www.kernel.org/doc/man-pages/online/pages/man3/mkstemps.3.html,,man mkstemps}
7 Gnulib module: mkstemps
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on many non-glibc platforms:
13 glibc 2.10, Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10,
14 Cygwin 1.5.x, mingw, MSVC 14.
15 @item
16 This function is declared in @code{<unistd.h>} instead of @code{<stdlib.h>}
17 on some platforms:
18 Mac OS X 10.13.
19 @item
20 On platforms where @code{off_t} is a 32-bit type, @code{mkstemps} may not work
21 correctly to create files larger than 2 GB@.  (Cf. @code{AC_SYS_LARGEFILE}.)
22 @end itemize
24 Portability problems not fixed by Gnulib:
25 @itemize
26 @end itemize
28 The gnulib module @code{clean-temp} can create temporary files that will not
29 be left behind after signals such as SIGINT.