cbrt: Provide replacement on MSVC and Minix.
[gnulib.git] / modules / cbrt
1 Description:
2 cbrt() function: cube root.
3
4 Files:
5 lib/cbrt.c
6 m4/cbrt.m4
7 m4/mathfunc.m4
8
9 Depends-on:
10 math
11 isfinite        [test $HAVE_CBRT = 0]
12 fabs            [test $HAVE_CBRT = 0]
13 frexp           [test $HAVE_CBRT = 0]
14 ldexp           [test $HAVE_CBRT = 0]
15
16 configure.ac:
17 gl_FUNC_CBRT
18 if test $HAVE_CBRT = 0; then
19   AC_LIBOBJ([cbrt])
20 fi
21 gl_MATH_MODULE_INDICATOR([cbrt])
22
23 Makefile.am:
24
25 Include:
26 <math.h>
27
28 Link:
29 $(CBRT_LIBM)
30
31 License:
32 LGPL
33
34 Maintainer:
35 Bruno Haible