poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / fwprintf.texi
blob1bd4f3d4b838c725be11a9981c14e9b96fa2a476
1 @node fwprintf
2 @section @code{fwprintf}
3 @findex fwprintf
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/fwprintf.html}
7 Gnulib module: ---
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 The @code{%m} directive is not portable, use @code{%s} mapped to an
17 argument of @code{strerror(errno)} (or a version of @code{strerror_r})
18 instead.
19 @item
20 This function is missing on some platforms:
21 NetBSD 3.0, OpenBSD 3.8, Minix 3.1.8, HP-UX 11.00, IRIX 6.5, Cygwin 1.5.x.
22 @item
23 On Windows and 32-bit AIX platforms, @code{wchar_t} is a 16-bit type and therefore cannot
24 accommodate all Unicode characters.
25 @item
26 When formatting an integer with grouping flag, this function inserts thousands
27 separators even in the "C" locale on some platforms:
28 NetBSD 5.1.
29 @item
30 On some platforms, this function does not set @code{errno} or the
31 stream error indicator on attempts to write to a read-only stream:
32 Cygwin 1.7.9.
33 @end itemize