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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9297
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 ceill() function: round towards positive infinity.
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/ceill.c
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 lib/ceil.c
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 m4/ceill.m4
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 Depends-on:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 math
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 configure.ac:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 gl_MATH_MODULE_INDICATOR([ceill])
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 Makefile.am:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 Include:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 <math.h>
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 Link:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 $(CEILL_LIBM)
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 License:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 LGPL
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 Maintainer:
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 Bruno Haible
3191943555eb New module 'ceill'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35