From ba16f5aa830b51c1e0147556991a2ec630aad009 Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Fri, 11 Feb 2005 04:15:17 +0000 Subject: 2005-02-11 Gregory W. Chicares Danny Smith * 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. --- winsup/mingw/include/math.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'winsup/mingw/include/math.h') 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) -- cgit v1.2.3