Mercurial > hg > octave-shane > gnulib-hg
annotate modules/ceill @ 17267:ee4cb5937493
unicodeio: depend on stdio, not ignore-value
* lib/unicodeio.c: Do not include ignore-value.h.
(fwrite_success_callback): Use plain fwrite, not ignore_value + fwrite.
* modules/unicodeio (Depends-on): Depend on stdio, not ignore-value.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 04 Jan 2013 01:55:52 +0000 |
parents | e9d2edcbd10e |
children |
rev | line source |
---|---|
9297 | 1 Description: |
2 ceill() function: round towards positive infinity. | |
3 | |
4 Files: | |
5 lib/ceill.c | |
6 lib/ceil.c | |
7 m4/ceill.m4 | |
8 | |
9 Depends-on: | |
10 math | |
11 extensions | |
15925
e9d2edcbd10e
ceill: Simplify for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
15006
diff
changeset
|
12 ceil [{ test $HAVE_DECL_CEILL = 0 || test $REPLACE_CEILL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1] |
e9d2edcbd10e
ceill: Simplify for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
15006
diff
changeset
|
13 float [{ test $HAVE_DECL_CEILL = 0 || test $REPLACE_CEILL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] |
9297 | 14 |
15 configure.ac: | |
16 gl_FUNC_CEILL | |
15006
53aac8a36d9f
ceill: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 if test $HAVE_DECL_CEILL = 0 || test $REPLACE_CEILL = 1; then |
53aac8a36d9f
ceill: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
18 AC_LIBOBJ([ceill]) |
53aac8a36d9f
ceill: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
19 fi |
9297 | 20 gl_MATH_MODULE_INDICATOR([ceill]) |
21 | |
22 Makefile.am: | |
23 | |
24 Include: | |
25 <math.h> | |
26 | |
27 Link: | |
28 $(CEILL_LIBM) | |
29 | |
30 License: | |
31 LGPL | |
32 | |
33 Maintainer: | |
34 Bruno Haible | |
35 |