1Description: 2sqrtl() function: square root with long double argument. 3 4Files: 5lib/sqrtl.c 6m4/sqrtl.m4 7 8Depends-on: 9math 10extensions 11sqrt [{ test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; }] 12float [{ test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] 13isnanl [{ test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] 14frexpl [{ test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] 15ldexpl [{ test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] 16 17configure.ac: 18gl_FUNC_SQRTL 19if test $HAVE_SQRTL = 0 || test $REPLACE_SQRTL = 1; then 20 AC_LIBOBJ([sqrtl]) 21fi 22gl_MATH_MODULE_INDICATOR([sqrtl]) 23 24Makefile.am: 25 26Include: 27<math.h> 28 29Link: 30$(SQRTL_LIBM) 31 32License: 33LGPL 34 35Maintainer: 36Paolo Bonzini 37