verify: new macro 'assume'
[gnulib.git] / modules / remainder
1 Description:
2 remainder() function: floating-point remainder function.
3
4 Files:
5 lib/remainder.c
6 m4/remainder.m4
7 m4/mathfunc.m4
8
9 Depends-on:
10 math
11 isfinite        [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
12 signbit         [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
13 fabs            [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
14 fmod            [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
15 isnand          [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
16 isinf           [test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1]
17
18 configure.ac:
19 gl_FUNC_REMAINDER
20 if test $HAVE_REMAINDER = 0 || test $REPLACE_REMAINDER = 1; then
21   AC_LIBOBJ([remainder])
22 fi
23 gl_MATH_MODULE_INDICATOR([remainder])
24
25 Makefile.am:
26
27 Include:
28 <math.h>
29
30 Link:
31 $(REMAINDER_LIBM)
32
33 License:
34 LGPL
35
36 Maintainer:
37 Bruno Haible