doc: Mention reason for replacement on glibc/Linux systems.
[gnulib.git] / doc / posix-functions / fprintf.texi
1 @node fprintf
2 @section @code{fprintf}
3 @findex fprintf
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fprintf.html}
6
7 Gnulib module: fprintf-posix or stdio, nonblocking, sigpipe
8
9 Portability problems fixed by Gnulib module @code{fprintf-posix}:
10 @itemize
11 @item
12 This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
13 @code{j}, @code{t}, @code{z}) on some platforms:
14 AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, MSVC 9, BeOS.
15 @item
16 printf of @samp{long double} numbers is unsupported on some platforms:
17 mingw, MSVC 9, BeOS.
18 @item
19 printf @code{"%f"}, @code{"%e"}, @code{"%g"} of Infinity and NaN yields an
20 incorrect result on some platforms:
21 AIX 5.2, OSF/1 5.1, Solaris 11 2011-11, mingw, MSVC 9.
22 @item
23 printf of @samp{long double} numbers outside the IEEE 754 range produces
24 no meaningful results on some platforms:
25 glibc and others, on x86, x86_64, IA-64 CPUs.
26 @item
27 This function does not support the @samp{a} and @samp{A} directives on some
28 platforms:
29 glibc-2.3.6, MacOS X 10.5, NetBSD 5.0, OpenBSD 4.0, AIX 5.2, HP-UX 11,
30 IRIX 6.5, OSF/1 5.1, Solaris 11 2011-11, Cygwin 1.5.x, mingw, MSVC 9, BeOS.
31 @item
32 This function does not support the @samp{F} directive on some platforms:
33 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9,
34 Cygwin 1.5.x, mingw, MSVC 9, BeOS.
35 @item
36 This function does not support the @samp{n} directive on some platforms:
37 MSVC 9.
38 @item
39 This function does not support the @samp{ls} directive on some platforms:
40 OpenBSD 4.0, IRIX 6.5, Solaris 2.6, Cygwin 1.5.x, Haiku.
41 @item
42 This function does not support precisions in the @samp{ls} directive correctly
43 on some platforms:
44 Solaris 11 2011-11.
45 @item
46 This function does not support format directives that access arguments in an
47 arbitrary order, such as @code{"%2$s"}, on some platforms:
48 NetBSD 3.0, mingw, MSVC 9, BeOS.
49 @item
50 This function doesn't support the @code{'} flag on some platforms:
51 NetBSD 3.0, Cygwin 1.5.24, mingw, MSVC 9.
52 @item
53 This function behaves incorrectly when a @samp{-} flag and a negative width
54 are specified together, on some platforms:
55 HP-UX 10.20.
56 @item
57 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
58 with zeroes) on some platforms:
59 MacOS X 10.5, FreeBSD 6.0, NetBSD 5.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 11 2011-11, Cygwin 1.5.x, mingw, MSVC 9.
60 @item
61 This function does not support precisions larger than 512 or 1024 in integer,
62 floating-point and pointer output on some platforms:
63 AIX 7.1, Solaris 10/x86, mingw, MSVC 9, BeOS.
64 @item
65 This function mishandles large floating point precisions
66 (for example, formatting 1.0 with @samp{"%.511f"})
67 on some platforms:
68 Solaris 10.
69 @item
70 This function can crash in out-of-memory conditions on some platforms:
71 MacOS X 10.3, FreeBSD 6.0, NetBSD 5.0.
72 @end itemize
73
74 Portability problems fixed by Gnulib module @code{stdio} or @code{fprintf-posix}, together with module @code{nonblocking}:
75 @itemize
76 @item
77 When writing to a non-blocking pipe whose buffer is full, this function fails
78 with @code{errno} being set to @code{ENOSPC} instead of @code{EAGAIN} on some
79 platforms:
80 mingw, MSVC 9.
81 @end itemize
82
83 Portability problems fixed by Gnulib module @code{stdio} or @code{fprintf-posix}, together with module @code{sigpipe}:
84 @itemize
85 @item
86 When writing to a pipe with no readers, this function fails, instead of
87 obeying the current @code{SIGPIPE} handler, on some platforms:
88 mingw, MSVC 9.
89 @end itemize
90
91 Portability problems not fixed by Gnulib:
92 @itemize
93 @item
94 When formatting an integer with grouping flag, this function inserts thousands
95 separators even in the "C" locale on some platforms:
96 NetBSD 5.1.
97 @item
98 Attempting to write to a read-only stream fails with @code{EOF} but
99 does not set the error flag for @code{ferror} on some platforms:
100 glibc 2.13, cygwin 1.7.9.
101 @end itemize