lock tests: Fix link error on HP-UX/hppa (regression from 2019-12-21).
[gnulib.git] / doc / glibc-functions / obstack_vprintf.texi
blob9032c40a3e2f20da45978744aa4d4f1eb2ac0fb0
1 @node obstack_vprintf
2 @subsection @code{obstack_vprintf}
3 @findex obstack_vprintf
5 Documentation:@*
6 @ifinfo
7 @ref{Variable Arguments Output,,Variable Arguments Output Functions,libc}.
8 @end ifinfo
9 @ifnotinfo
10 @url{https://www.gnu.org/software/libc/manual/html_node/Variable-Arguments-Output.html}.
11 @end ifnotinfo
13 Gnulib module: obstack-printf or obstack-printf-posix
15 Portability problems fixed by either Gnulib module
16 @code{obstack-printf} or @code{obstack-printf-posix}:
17 @itemize
18 @item
19 This function is missing on all non-glibc platforms:
20 Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, OpenBSD 3.8, Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 11.4, Cygwin, mingw, MSVC 14, Android 9.0.
21 @end itemize
23 Portability problems fixed by Gnulib module @code{obstack-printf-posix}:
24 @itemize
25 @item
26 This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
27 @code{j}, @code{t}, @code{z}) on some platforms:
28 AIX 5.1, HP-UX 11.23, IRIX 6.5, Solaris 9, Cygwin 1.5.24, mingw, MSVC 14.
29 @item
30 printf of @samp{long double} numbers is unsupported on some platforms:
31 mingw, MSVC 14.
32 @item
33 printf @code{"%f"}, @code{"%e"}, @code{"%g"} of Infinity and NaN yields an
34 incorrect result on some platforms:
35 AIX 5.2, Solaris 11.0, mingw, MSVC 14.
36 @item
37 This function does not support the @samp{a} and @samp{A} directives on some
38 platforms:
39 glibc-2.3.6, Mac OS X 10.5, NetBSD 5.0, OpenBSD 4.0, AIX 5.2, HP-UX 11,
40 IRIX 6.5, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14.
41 @item
42 This function does not support the @samp{F} directive on some platforms:
43 NetBSD 3.0, AIX 5.1, HP-UX 11.23, IRIX 6.5, Solaris 9,
44 Cygwin 1.5.x, mingw, MSVC 14.
45 @item
46 This function does not support the @samp{n} directive on some platforms:
47 MSVC 14.
48 @item
49 This function does not support the @samp{ls} directive on some platforms:
50 OpenBSD 4.0, IRIX 6.5, Cygwin 1.5.x, Haiku.
51 @item
52 This function does not support precisions in the @samp{ls} directive correctly
53 on some platforms:
54 Solaris 11.4.
55 @item
56 This function does not support format directives that access arguments in an
57 arbitrary order, such as @code{"%2$s"}, on some platforms:
58 NetBSD 3.0, mingw, MSVC 14.
59 @item
60 This function doesn't support the @code{'} flag on some platforms:
61 NetBSD 3.0, Cygwin 1.5.24, mingw, MSVC 14.
62 @item
63 This function does not round the argument of the @samp{a} directive correctly
64 on some platforms:
65 Mac OS X 10.12, FreeBSD 6.1.
66 @item
67 printf @code{"%010f"} of NaN and Infinity yields an incorrect result (padded
68 with zeroes) on some platforms:
69 Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0, AIX 5.2, IRIX 6.5, Solaris 11.0, Cygwin 1.5.x, mingw, MSVC 14.
70 @item
71 This function does not support precisions larger than 512 or 1024 in integer,
72 floating-point and pointer output on some platforms:
73 Solaris 10/x86, mingw, MSVC 14.
74 @item
75 This function can crash in out-of-memory conditions on some platforms:
76 FreeBSD 6.0, NetBSD 5.0.
77 @item
78 This function does not fully support the @samp{n} directive on some platforms:
79 HP-UX 11, mingw, MSVC 14.
80 @end itemize
82 Portability problems not fixed by Gnulib:
83 @itemize
84 @item
85 The @code{%m} directive is not portable, use @code{%s} mapped to an
86 argument of @code{strerror(errno)} (or a version of @code{strerror_r})
87 instead.
88 @end itemize