Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/frexpf @ 17138:42f6597efac3
* lib/regexec.c (re_search_internal): Fix grammar in comment.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 16 Oct 2012 16:01:05 -0700 |
parents | fdbe3125f81a |
children |
rev | line source |
---|---|
15841 | 1 Description: |
2 frexpf() function: split a float into its constituents. | |
3 | |
4 Files: | |
5 lib/frexpf.c | |
6 m4/frexpf.m4 | |
15843
bc22a56bfa43
frexpf: Drop assumption about library that defines frexpf.
Bruno Haible <bruno@clisp.org>
parents:
15841
diff
changeset
|
7 m4/mathfunc.m4 |
15841 | 8 |
9 Depends-on: | |
10 math | |
16580
fdbe3125f81a
math: Ensure declarations of math functions.
Bruno Haible <bruno@clisp.org>
parents:
15845
diff
changeset
|
11 extensions |
15845
622d3734ca5a
frexpf: Work around problems on IRIX and mingw.
Bruno Haible <bruno@clisp.org>
parents:
15843
diff
changeset
|
12 frexp [test $HAVE_FREXPF = 0 || test $REPLACE_FREXPF = 1] |
15841 | 13 |
14 configure.ac: | |
15 gl_FUNC_FREXPF | |
15845
622d3734ca5a
frexpf: Work around problems on IRIX and mingw.
Bruno Haible <bruno@clisp.org>
parents:
15843
diff
changeset
|
16 if test $HAVE_FREXPF = 0 || test $REPLACE_FREXPF = 1; then |
15841 | 17 AC_LIBOBJ([frexpf]) |
18 fi | |
19 gl_MATH_MODULE_INDICATOR([frexpf]) | |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 <math.h> | |
25 | |
26 Link: | |
27 $(FREXPF_LIBM) | |
28 | |
29 License: | |
30 LGPL | |
31 | |
32 Maintainer: | |
33 Bruno Haible |