mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
* lib/atanl.c (atanl) [HAVE_SAME_LONG_DOUBLE_AS_DOUBLE]: New alternative implementation. * m4/atanl.m4 (gl_FUNC_ATANL): Require gl_LONG_DOUBLE_VS_DOUBLE. Determine ATANL_LIBM according to HAVE_SAME_LONG_DOUBLE_AS_DOUBLE. * modules/atanl (Depends-on): Add atan. Update conditions.
34 lines
525 B
Plaintext
34 lines
525 B
Plaintext
Description:
|
|
atanl() function: inverse tangent function with long double argument.
|
|
|
|
Files:
|
|
lib/atanl.c
|
|
m4/atanl.m4
|
|
|
|
Depends-on:
|
|
math
|
|
extensions
|
|
atan [test $HAVE_ATANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
|
|
isnanl [test $HAVE_ATANL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
|
|
configure.ac:
|
|
gl_FUNC_ATANL
|
|
if test $HAVE_ATANL = 0; then
|
|
AC_LIBOBJ([atanl])
|
|
fi
|
|
gl_MATH_MODULE_INDICATOR([atanl])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<math.h>
|
|
|
|
Link:
|
|
$(ATANL_LIBM)
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Paolo Bonzini
|