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