mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
* lib/math.in.h (ilogbf): New declaration. * lib/ilogbf.c: New file. * m4/ilogbf.m4: New file. * m4/math_h.m4 (gl_MATH_H): Test whether ilogbf is declared. (gl_MATH_H_DEFAULTS): Initialize GNULIB_ILOGBF, HAVE_ILOGBF, REPLACE_ILOGBF. * modules/math (Makefile.am): Substitute GNULIB_ILOGBF, HAVE_ILOGBF, REPLACE_ILOGBF. * modules/ilogbf: New file. * tests/test-math-c++.cc: Check the declaration of ilogbf. * doc/posix-functions/ilogbf.texi: Mention the new module.
37 lines
596 B
Plaintext
37 lines
596 B
Plaintext
Description:
|
|
ilogbf() function: get exponent as integer.
|
|
|
|
Files:
|
|
lib/ilogbf.c
|
|
lib/ilogb.c
|
|
m4/ilogbf.m4
|
|
m4/mathfunc.m4
|
|
|
|
Depends-on:
|
|
math
|
|
extensions
|
|
isfinite [test $HAVE_ILOGBF = 0 || test $REPLACE_ILOGBF = 1]
|
|
frexpf [test $HAVE_ILOGBF = 0 || test $REPLACE_ILOGBF = 1]
|
|
isnanf [test $HAVE_ILOGBF = 0 || test $REPLACE_ILOGBF = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_ILOGBF
|
|
if test $HAVE_ILOGBF = 0 || test $REPLACE_ILOGBF = 1; then
|
|
AC_LIBOBJ([ilogbf])
|
|
fi
|
|
gl_MATH_MODULE_INDICATOR([ilogbf])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<math.h>
|
|
|
|
Link:
|
|
$(ILOGBF_LIBM)
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Bruno Haible
|