diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2005-02-11 04:15:17 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2005-02-11 04:15:17 +0000 |
commit | ba16f5aa830b51c1e0147556991a2ec630aad009 (patch) | |
tree | aa83c0d2f65a69740163c42d9f23d9b2d4ecf72e /winsup/mingw/include/math.h | |
parent | ccf32128b3c601821771014e7beb4806fa30c523 (diff) | |
download | cygnal-ba16f5aa830b51c1e0147556991a2ec630aad009.tar.gz cygnal-ba16f5aa830b51c1e0147556991a2ec630aad009.tar.bz2 cygnal-ba16f5aa830b51c1e0147556991a2ec630aad009.zip |
2005-02-11 Gregory W. Chicares <chicares at cox dot net>
Danny Smith <dannysmith@users at sourceforge dot net>
* include/math.h (expm1, expm1f, expmll): Add prototypes.
* mingwex/Makefile.in (MATH_DISTFILES): Add expm1.c,
expm1f.c, expm1l.c.
(MATH_OBJS): Add expm1.o, expm1f.o, expm1l.o.
* mingwex/math/expm1.c: New file.
* mingwex/math/expm1f.c: New file.
* mingwex/math/expm1l.c: New file.
Diffstat (limited to 'winsup/mingw/include/math.h')
-rw-r--r-- | winsup/mingw/include/math.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index a05fa841b..29bf27ce0 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -454,7 +454,11 @@ extern double __cdecl exp2(double); extern float __cdecl exp2f(float); extern long double __cdecl exp2l(long double); -/* 7.12.6.3 The expm1 functions: TODO */ +/* 7.12.6.3 The expm1 functions */ +/* TODO: These could be inlined */ +extern double __cdecl expm1(double); +extern float __cdecl expm1f(float); +extern long double __cdecl expm1l(long double); /* 7.12.6.4 Double in C89 */ __CRT_INLINE float __cdecl frexpf (float x, int* expn) |