mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-06-15 15:25:49 +00:00
d171b9454f
* 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.
36 lines
792 B
Plaintext
36 lines
792 B
Plaintext
Description:
|
|
frexpl() function: split a 'long double' into its constituents.
|
|
|
|
Files:
|
|
lib/frexpl.c
|
|
lib/frexp.c
|
|
m4/frexpl.m4
|
|
|
|
Depends-on:
|
|
math-h
|
|
extensions
|
|
frexp [{ test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
|
|
isnanl-nolibm [{ test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
fpucw [{ test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([gl_FUNC_FREXPL])
|
|
if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; then
|
|
AC_LIBOBJ([frexpl])
|
|
fi
|
|
gl_MATH_MODULE_INDICATOR([frexpl])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<math.h>
|
|
|
|
Link:
|
|
$(FREXPL_LIBM)
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Paolo Bonzini
|