5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fopen.html}
9 Portability problems fixed by Gnulib:
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 HP-UX 11.00, AIX 7.1, Solaris 9, Irix 5.3.
17 On platforms where @code{off_t} is a 32-bit type, @code{fopen} may not work
18 correctly with files larger than 2 GB. (Cf. @code{AC_SYS_LARGEFILE}.)
20 On Windows platforms (excluding Cygwin), this function does usually not
21 recognize the @file{/dev/null} filename.
24 Portability problems not fixed by Gnulib:
27 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
30 On Windows, this function returns a file stream in ``text'' mode by default;
31 this means that it translates @code{'\n'} to CR/LF by default. Use the
32 @code{"b"} flag if you need reliable binary I/O.
34 On Windows platforms (excluding Cygwin), this function fails to open
35 directories for reading. Such streams have implementation-defined
36 semantics on other platforms. To avoid directory streams with a
37 consistent error message, use @code{fstat} after @code{open} and
38 @code{fdopen}, rather than @code{fopen} and @code{fileno}.