Mercurial > hg > octave-shane > gnulib-hg
annotate modules/fprintf-posix @ 11219:aaeb2f86d096
Fix *printf behaviour regarding the %ls directive.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 26 Feb 2009 12:54:20 +0100 |
parents | e1a3422c4e90 |
children | be869a242af0 |
rev | line source |
---|---|
8394 | 1 Description: |
2 POSIX compatible fprintf() function: print formatted output to a stream | |
3 | |
4 Files: | |
5 lib/fprintf.c | |
6 m4/fprintf-posix.m4 | |
7 m4/printf.m4 | |
8 | |
9 Depends-on: | |
10 stdio | |
11 fseterr | |
12 vasnprintf | |
9646
a113e473cc98
Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents:
9449
diff
changeset
|
13 isnand-nolibm |
8394 | 14 isnanl-nolibm |
9442
ad275322f8f1
Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
Bruno Haible <bruno@clisp.org>
parents:
8919
diff
changeset
|
15 frexp-nolibm |
8832
1466c973f476
Add support for 'long double' number output.
Bruno Haible <bruno@clisp.org>
parents:
8655
diff
changeset
|
16 frexpl-nolibm |
8394 | 17 printf-frexp |
18 printf-frexpl | |
8655
9a272158fe43
Faster determination of the sign of a number.
Bruno Haible <bruno@clisp.org>
parents:
8531
diff
changeset
|
19 signbit |
8531 | 20 fpucw |
9449
a859a771e88a
Use GL_NOCRASH, to avoid a crashreporter dialog box from a configure check.
Bruno Haible <bruno@clisp.org>
parents:
9442
diff
changeset
|
21 nocrash |
8919
42e2847583f9
Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
Bruno Haible <bruno@clisp.org>
parents:
8832
diff
changeset
|
22 printf-safe |
10427 | 23 errno |
10973
e1a3422c4e90
Add support for universal builds to vasnprintf.
Bruno Haible <bruno@clisp.org>
parents:
10427
diff
changeset
|
24 multiarch |
8394 | 25 |
26 configure.ac: | |
27 gl_FUNC_FPRINTF_POSIX | |
28 gl_STDIO_MODULE_INDICATOR([fprintf-posix]) | |
29 | |
30 Makefile.am: | |
31 | |
32 Include: | |
33 <stdio.h> | |
34 | |
35 License: | |
36 LGPL | |
37 | |
38 Maintainer: | |
39 Bruno Haible | |
40 |