avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / creat.texi
1 @node creat
2 @section @code{creat}
3 @findex creat
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creat.html}
6
7 Gnulib module: ---
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
12
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 On Windows, this function returns a file handle in @code{O_TEXT} mode.  If you
17 need a file handle in @code{O_BINARY} mode, you need to use the function
18 @code{open} instead.
19 @item
20 On platforms where @code{off_t} is a 32-bit type, @code{creat} may not work
21 correctly to create files larger than 2 GB.  The fix is to use the
22 @code{AC_SYS_LARGEFILE} macro.
23 @end itemize