Mercurial > hg > octave-kai > gnulib-hg
annotate modules/atanf @ 15887:89c762414427
New module 'atanf'.
* lib/math.in.h (atanf): New declaration.
* lib/atanf.c: New file.
* m4/atanf.m4: New file.
* m4/math_h.m4 (gl_MATH_H): Test whether atanf is declared.
(gl_MATH_H_DEFAULTS): Initialize GNULIB_ATANF, HAVE_ATANF.
* modules/math (Makefile.am): Substitute GNULIB_ATANF, HAVE_ATANF.
* modules/atanf: New file.
* tests/test-math-c++.cc: Check the declaration of atanf.
* doc/posix-functions/atanf.texi: Mention the new module.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 08 Oct 2011 23:55:44 +0200 |
parents | |
children | fdbe3125f81a |
rev | line source |
---|---|
15887 | 1 Description: |
2 atanf() function: inverse tangent function. | |
3 | |
4 Files: | |
5 lib/atanf.c | |
6 m4/atanf.m4 | |
7 | |
8 Depends-on: | |
9 math | |
10 atan [test $HAVE_ATANF = 0] | |
11 | |
12 configure.ac: | |
13 gl_FUNC_ATANF | |
14 if test $HAVE_ATANF = 0; then | |
15 AC_LIBOBJ([atanf]) | |
16 fi | |
17 gl_MATH_MODULE_INDICATOR([atanf]) | |
18 | |
19 Makefile.am: | |
20 | |
21 Include: | |
22 <math.h> | |
23 | |
24 Link: | |
25 $(ATANF_LIBM) | |
26 | |
27 License: | |
28 LGPL | |
29 | |
30 Maintainer: | |
31 Bruno Haible |