diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-20 08:08:06 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-20 08:08:06 +0000 |
commit | dadc7790533b85775b2744472befc4876fb581c0 (patch) | |
tree | 80829abe2156af6d902afec93c620c19a7fa99bb /openwrt/toolchain | |
parent | 7bde7b4183437569dd2aa8958f989a682e81dd42 (diff) |
add rintf wrapper to libnotimpl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2190 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/toolchain')
-rw-r--r-- | openwrt/toolchain/libnotimpl/files/math.c | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/openwrt/toolchain/libnotimpl/files/math.c b/openwrt/toolchain/libnotimpl/files/math.c index cc8a661ac..8934197d8 100644 --- a/openwrt/toolchain/libnotimpl/files/math.c +++ b/openwrt/toolchain/libnotimpl/files/math.c @@ -1,16 +1,16 @@ /* vi: set sw=4 ts=4: */ +#include "math.h" + /* cosf for uClibc * * wrapper for cos(x) */ -#include "math.h" - #ifdef __STDC__ - float cosf(float x) /* wrapper cos */ + float cosf(float x) #else - float cosf(x) /* wrapper cos */ + float cosf(x) float x; #endif { @@ -22,12 +22,25 @@ * wrapper for sin(x) */ -#include "math.h" +#ifdef __STDC__ + float sinf(float x) +#else + float sinf(x) + float x; +#endif +{ + return (float) sin( (double)x ); +} + +/* rintf for uClibc + * + * wrapper for rint(x) + */ #ifdef __STDC__ - float sinf(float x) /* wrapper sin */ + float rintf(float x) #else - float sinf(x) /* wrapper sin */ + float rintf(x) float x; #endif { |