Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/fprintf-posix @ 8919:42e2847583f9
Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Wed, 06 Jun 2007 02:20:57 +0000 |
parents | 1466c973f476 |
children | ad275322f8f1 |
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 | |
13 isnan-nolibm | |
14 isnanl-nolibm | |
8832
1466c973f476
Add support for 'long double' number output.
Bruno Haible <bruno@clisp.org>
parents:
8655
diff
changeset
|
15 frexpl-nolibm |
8394 | 16 printf-frexp |
17 printf-frexpl | |
8655
9a272158fe43
Faster determination of the sign of a number.
Bruno Haible <bruno@clisp.org>
parents:
8531
diff
changeset
|
18 signbit |
8531 | 19 fpucw |
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
|
20 printf-safe |
8394 | 21 |
22 configure.ac: | |
23 gl_FUNC_FPRINTF_POSIX | |
24 gl_STDIO_MODULE_INDICATOR([fprintf-posix]) | |
25 | |
26 Makefile.am: | |
27 | |
28 Include: | |
29 <stdio.h> | |
30 | |
31 License: | |
32 LGPL | |
33 | |
34 Maintainer: | |
35 Bruno Haible | |
36 |