diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-11-01 19:18:48 -0500 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-11-04 10:30:19 +0100 |
commit | 7ae07d4f028849d30b4f260b3261d634f16d7331 (patch) | |
tree | 855777d02d49d15c9bf362ebe1bf8a30c40f9b65 /libm/Makefile.in | |
parent | 2086015b9a223586c1a2b8d7f015ad3a38bdf8bc (diff) |
libm: implement a generic sincos().
We already provide sincos() on some archs, so we should ship a generic version.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/Makefile.in b/libm/Makefile.in index af949e82c..23a55b369 100644 --- a/libm/Makefile.in +++ b/libm/Makefile.in @@ -73,7 +73,7 @@ libm_CSRC := \ 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 \ - cexp.c + cexp.c sincos.c # Not implemented [yet?], see comment in float_wrappers.c: # fdimf.o fmaf.o fmaxf.o fminf.o |