mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
* lib/math.in.h (exp2f): New declaration. * lib/exp2f.c: New file. * m4/exp2f.m4: New file. * m4/math_h.m4 (gl_MATH_H): Test whether exp2f is declared. (gl_MATH_H_DEFAULTS): Initialize GNULIB_EXP2F, HAVE_DECL_EXP2F. * modules/math (Makefile.am): Substitute GNULIB_EXP2F, HAVE_DECL_EXP2F. * modules/exp2f: New file. * tests/test-math-c++.cc: Check the declaration of exp2f. * doc/posix-functions/exp2f.texi: Mention the new module and the IRIX problem.
33 lines
372 B
Plaintext
33 lines
372 B
Plaintext
Description:
|
|
exp2f() function: exponential base 2 function.
|
|
|
|
Files:
|
|
lib/exp2f.c
|
|
m4/exp2f.m4
|
|
|
|
Depends-on:
|
|
math
|
|
extensions
|
|
exp2 [test $HAVE_EXP2F = 0]
|
|
|
|
configure.ac:
|
|
gl_FUNC_EXP2F
|
|
if test $HAVE_EXP2F = 0; then
|
|
AC_LIBOBJ([exp2f])
|
|
fi
|
|
gl_MATH_MODULE_INDICATOR([exp2f])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<math.h>
|
|
|
|
Link:
|
|
$(EXP2F_LIBM)
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Bruno Haible
|