1Description:
2exp2l() function: exponential base 2 function with long double argument.
3
4Files:
5lib/exp2l.c
6lib/expl-table.c
7m4/exp2l.m4
8
9Depends-on:
10math
11extensions
12exp2            [{ test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1]
13float           [{ test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
14isnanl          [{ test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
15roundl          [{ test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
16ldexpl          [{ test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
17
18configure.ac:
19gl_FUNC_EXP2L
20if test $HAVE_EXP2L = 0 || test $REPLACE_EXP2L = 1; then
21  AC_LIBOBJ([exp2l])
22  AC_LIBOBJ([expl-table])
23fi
24gl_MATH_MODULE_INDICATOR([exp2l])
25
26Makefile.am:
27
28Include:
29<math.h>
30
31Link:
32$(EXP2L_LIBM)
33
34License:
35LGPL
36
37Maintainer:
38Bruno Haible
39