1Description:
2fmod() function: floating-point remainder function.
3
4Files:
5lib/fmod.c
6m4/fmod.m4
7m4/mathfunc.m4
8
9Depends-on:
10math
11isfinite        [test $REPLACE_FMOD = 1]
12signbit         [test $REPLACE_FMOD = 1]
13fabs            [test $REPLACE_FMOD = 1]
14frexp           [test $REPLACE_FMOD = 1]
15trunc           [test $REPLACE_FMOD = 1]
16ldexp           [test $REPLACE_FMOD = 1]
17isnand          [test $REPLACE_FMOD = 1]
18isinf           [test $REPLACE_FMOD = 1]
19
20configure.ac:
21gl_FUNC_FMOD
22if test $REPLACE_FMOD = 1; then
23  AC_LIBOBJ([fmod])
24fi
25gl_MATH_MODULE_INDICATOR([fmod])
26
27Makefile.am:
28
29Include:
30<math.h>
31
32Link:
33$(FMOD_LIBM)
34
35License:
36LGPL
37
38Maintainer:
39Bruno Haible
40