Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/vfprintf-posix @ 16364:89227b989588
fatal-signal: use C prototypes (with explicit void).
* lib/fatal-signal.c (uninstall_handlers, install_handlers)
(init_fatal_signal_set, block_fatal_signals): Fix signatures.
author | Akim Demaille <demaille@gostai.com> |
---|---|
date | Wed, 08 Feb 2012 10:36:20 +0100 |
parents | 53e09ee0d19a |
children |
rev | line source |
---|---|
8391 | 1 Description: |
2 POSIX compatible vfprintf() function: print formatted output to a stream | |
3 | |
13187
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
4 Comment: |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
5 This module should not be used as a dependency from a test module, |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
6 otherwise when this module occurs as a tests-related module, it will |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
7 have side effects on the compilation of the 'vasnprintf' module, if |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
8 that module occurs among the main modules in lib/. |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
9 |
8391 | 10 Files: |
11 lib/vfprintf.c | |
12 m4/vfprintf-posix.m4 | |
13 m4/printf.m4 | |
15905
53e09ee0d19a
*printf: Fix for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
14 m4/math_h.m4 |
8391 | 15 |
16 Depends-on: | |
17 stdio | |
9449
a859a771e88a
Use GL_NOCRASH, to avoid a crashreporter dialog box from a configure check.
Bruno Haible <bruno@clisp.org>
parents:
9442
diff
changeset
|
18 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
|
19 printf-safe |
10973
e1a3422c4e90
Add support for universal builds to vasnprintf.
Bruno Haible <bruno@clisp.org>
parents:
10427
diff
changeset
|
20 multiarch |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
21 fseterr [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
22 vasnprintf [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
23 isnand-nolibm [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
24 isnanl-nolibm [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
25 frexp-nolibm [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
26 frexpl-nolibm [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
27 printf-frexp [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
28 printf-frexpl [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
29 signbit [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
30 fpucw [test $REPLACE_VFPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
31 errno [test $REPLACE_VFPRINTF = 1] |
8391 | 32 |
33 configure.ac: | |
34 gl_FUNC_VFPRINTF_POSIX | |
35 gl_STDIO_MODULE_INDICATOR([vfprintf-posix]) | |
36 | |
37 Makefile.am: | |
38 | |
39 Include: | |
40 <stdio.h> | |
41 | |
42 License: | |
43 LGPL | |
44 | |
45 Maintainer: | |
46 Bruno Haible | |
47 |