diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-11-01 18:41:30 -0500 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-11-04 10:24:57 +0100 |
commit | 6471fc450b66dcb1ba16fe6568cd52221ca64cd1 (patch) | |
tree | 1870793e48175239fa19d171e7e8bf5ce0c833c6 /libm/Makefile.in | |
parent | 25790afdadf8fa8ec0897c195c73a63eaae1e1dd (diff) |
libm: implement generic cexp(), cexpf() and cexpl().
The cexp*() family of functions is defined by the C99 math standard as
implementing exponential functions for complex types.
Signed-off-by: William Pitcock <nenolod@dereferenced.org>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libm/Makefile.in')
-rw-r--r-- | libm/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/Makefile.in b/libm/Makefile.in index f0aaa2aff..af949e82c 100644 --- a/libm/Makefile.in +++ b/libm/Makefile.in @@ -72,7 +72,8 @@ libm_CSRC := \ s_fpclassify.c s_fpclassifyf.c s_signbit.c s_signbitf.c \ s_isnan.c s_isnanf.c s_isinf.c s_isinff.c s_finitef.c \ s_fdim.c s_fma.c s_fmax.c s_fmin.c \ - s_remquo.c w_exp2.c + s_remquo.c w_exp2.c \ + cexp.c # Not implemented [yet?], see comment in float_wrappers.c: # fdimf.o fmaf.o fmaxf.o fminf.o |