doc: Update for Solaris 11.4.
[gnulib.git] / doc / posix-functions / vsprintf.texi
blobc0c442934bffefbf46203fe4254aabb2bea29f68
1 @node vsprintf
2 @section @code{vsprintf}
3 @findex vsprintf
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsprintf.html}
7 Gnulib module: vsprintf-posix
9 Portability problems fixed by Gnulib:
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 14, BeOS.
15 @item
16 printf of @samp{long double} numbers is unsupported on some platforms:
17 mingw, MSVC 14, 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.4, mingw, MSVC 14.
22 @item
23 This function does not support the @samp{a} and @samp{A} directives on some
24 platforms:
25 glibc-2.3.6, Mac OS X 10.5, NetBSD 5.0, OpenBSD 4.0, AIX 5.2, HP-UX 11,
26 IRIX 6.5, OSF/1 5.1, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14, BeOS.
27 @item
28 This function does not support the @samp{F} directive on some platforms:
29 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9,
30 Cygwin 1.5.x, mingw, MSVC 14, BeOS.
31 @item
32 This function does not support the @samp{n} directive on some platforms:
33 MSVC 14.
34 @item
35 This function does not support the @samp{ls} directive on some platforms:
36 OpenBSD 4.0, IRIX 6.5, Solaris 2.6, Cygwin 1.5.x, Haiku.
37 @item
38 This function does not support precisions in the @samp{ls} directive correctly
39 on some platforms:
40 Solaris 11.4.
41 @item
42 This function does not support format directives that access arguments in an
43 arbitrary order, such as @code{"%2$s"}, on some platforms:
44 NetBSD 3.0, mingw, MSVC 14, BeOS.
45 @item
46 This function doesn't support the @code{'} flag on some platforms:
47 NetBSD 3.0, Cygwin 1.5.24, mingw, MSVC 14.
48 @item
49 This function does not round the argument of the @samp{a} directive correctly
50 on some platforms:
51 Mac OS X 10.12, FreeBSD 6.1.
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, or wrong capitalization) on some platforms:
59 Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14.
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 14, 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 Mac OS X 10.3, FreeBSD 6.0, NetBSD 5.0.
72 @end itemize
74 Portability problems not fixed by Gnulib:
75 @itemize
76 @item
77 Formatting noncanonical @samp{long double} numbers produces
78 nonmeaningful results on some platforms:
79 glibc and others, on x86, x86_64, IA-64 CPUs.
80 @item
81 When formatting an integer with grouping flag, this function inserts thousands
82 separators even in the "C" locale on some platforms:
83 NetBSD 5.1.
84 @end itemize