Mercurial > hg > octave-jordi > gnulib-hg
annotate modules/snprintf-posix @ 17732:6d92afe34a82
openat-die: use _Noreturn markup
Compiling coreutils.git on cygwin with gcc 4.8.3, I got:
lib/openat-die.c:34:1: error: function might be candidate for attribute 'noreturn' [-Werror=suggest-attribute=noreturn]
openat_save_fail (int errnum)
^
* modules/openat-die (Depends-on): Add snippet/_Noreturn.
* lib/openat-die.c (openat_save_fail, openat_restore_fail): Mark
_Noreturn.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Wed, 30 Jul 2014 15:01:44 -0600 |
parents | 1f14c6dd175d |
children |
rev | line source |
---|---|
8366 | 1 Description: |
2 POSIX compatible snprintf() function: print formatted output to a fixed length | |
3 string | |
4 | |
13187
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
5 Comment: |
be869a242af0
Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents:
10973
diff
changeset
|
6 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
|
7 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
|
8 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
|
9 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
|
10 |
8366 | 11 Files: |
12 m4/snprintf-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 |
8366 | 15 |
16 Depends-on: | |
17 snprintf | |
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:
9646
diff
changeset
|
20 multiarch |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
21 vasnprintf [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
22 isnand-nolibm [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
23 isnanl-nolibm [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
24 frexp-nolibm [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
25 frexpl-nolibm [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
26 printf-frexp [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
27 printf-frexpl [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
28 signbit [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13187
diff
changeset
|
29 fpucw [test $ac_cv_func_snprintf = no || test $REPLACE_SNPRINTF = 1] |
8366 | 30 |
31 configure.ac: | |
32 gl_FUNC_SNPRINTF_POSIX | |
33 | |
34 Makefile.am: | |
35 | |
36 Include: | |
37 <stdio.h> | |
38 | |
39 License: | |
40 LGPL | |
41 | |
42 Maintainer: | |
17713
1f14c6dd175d
Bruno Haible has stepped down as maintainer.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15905
diff
changeset
|
43 all |