Rename two directories: headers -> posix-headers, functions -> posix-functions.
[gnulib.git] / doc / posix-functions / vprintf.texi
1 @node vprintf
2 @section @code{vprintf}
3 @findex vprintf
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/vprintf.html}
6
7 Gnulib module: vprintf-posix
8
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 2006, mingw, BeOS.
15 @item
16 printf of @samp{long double} numbers is unsupported on some platforms:
17 mingw, 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 10, mingw.
22 @item
23 This function does not support the @samp{a} and @samp{A} directives on some
24 platforms:
25 glibc-2.3.6, MacOS X 10.3, NetBSD 3.0, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, BeOS.
26 @item
27 This function does not support the @samp{F} directive on some platforms:
28 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, BeOS.
29 @item
30 This function does not support format directives that access arguments in an
31 arbitrary order, such as @code{"%2$s"}, on some platforms:
32 NetBSD 3.0, mingw, BeOS.
33 @item
34 This function doesn't support the @code{'} flag on some platforms:
35 NetBSD 3.0, Cygwin 2006, mingw.
36 @item
37 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
38 with zeroes) on some platforms:
39 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.2, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 2007, mingw.
40 @item
41 This function does not support precisions larger than 512 or 1024 in integer,
42 floating-point and pointer output on some platforms:
43 mingw, BeOS.
44 @item
45 This function can crash in out-of-memory conditions on some platforms:
46 MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0.
47 @end itemize
48
49 Portability problems not fixed by Gnulib:
50 @itemize
51 @end itemize