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