open, fopen: Update regarding AIX.
[gnulib.git] / doc / posix-functions / open.texi
1 @node open
2 @section @code{open}
3 @findex open
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open.html}
6
7 Gnulib module: open, fchdir
8
9 Portability problems fixed by the Gnulib module open:
10 @itemize
11 @item
12 This function does not fail when the file name argument ends in a slash
13 and (without the slash) names a nonexistent file or a file that is not a
14 directory, on some platforms:
15 FreeBSD 7.2, AIX 7.1, HP-UX 11.00, Solaris 9, Irix 5.3.
16 @item
17 On Windows platforms (excluding Cygwin), this function does usually not
18 recognize the @file{/dev/null} filename.
19 @end itemize
20
21 Portability problems fixed by the Gnulib module fchdir:
22 @itemize
23 @item
24 On Windows platforms (excluding Cygwin), this function fails to open a
25 read-only descriptor for directories.
26 @end itemize
27
28 Portability problems not fixed by Gnulib:
29 @itemize
30 @item
31 On Windows, this function returns a file handle in @code{O_TEXT} mode by
32 default; this means that it translates '\n' to CR/LF by default.  Use the
33 @code{O_BINARY} flag if you need reliable binary I/O.
34 @item
35 On platforms where @code{off_t} is a 32-bit type, @code{open} may not work
36 correctly with files larger than 2 GB.  The fix is to use the
37 @code{AC_SYS_LARGEFILE} macro.
38 @end itemize