1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-09-11 11:50:52 +03:00
Files
gnulib/modules/cosl
Bruno Haible d171b9454f Rename module math to math-h.
* modules/math-h: Renamed from modules/math.
* modules/math-h-tests: Renamed from modules/math-tests.
* modules/math-h-c++-tests: Renamed from modules/math-c++-tests.
* tests/test-math-h.c: Renamed from tests/test-math.c.
* tests/test-math-h-c++.cc: Renamed from tests/test-math-c++.cc.
* tests/test-math-h-c++2.cc: Renamed from tests/test-math-c++2.cc.
* doc/posix-headers/math.texi: Update.
* modules/* (Depends-on): Update.
* modules/math: New file.
2024-12-27 23:14:22 +01:00

47 lines
991 B
Plaintext

Description:
cosl() function: cosine function with long double argument.
Files:
lib/cosl.c
lib/trigl.h
lib/sincosl.c
lib/trigl.c
m4/cosl.m4
Depends-on:
math-h
extensions
cos [test $HAVE_COSL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
float-h [test $HAVE_COSL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
isnanl [test $HAVE_COSL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
floor [test $HAVE_COSL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
floorl [test $HAVE_COSL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
configure.ac:
gl_FUNC_COSL
gl_CONDITIONAL([GL_COND_OBJ_COSL], [test $HAVE_COSL = 0])
AM_COND_IF([GL_COND_OBJ_COSL], [
if test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0; then
AC_LIBOBJ([sincosl])
AC_LIBOBJ([trigl])
fi
])
gl_MATH_MODULE_INDICATOR([cosl])
Makefile.am:
if GL_COND_OBJ_COSL
lib_SOURCES += cosl.c
endif
Include:
<math.h>
Link:
$(COSL_LIBM)
License:
LGPL
Maintainer:
Paolo Bonzini