From: Nicolas Thill Date: Thu, 20 Oct 2005 08:08:06 +0000 (+0000) Subject: add rintf wrapper to libnotimpl X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=94d52d5359e8d51179d75d9037937deee2455185 add rintf wrapper to libnotimpl SVN-Revision: 2190 --- diff --git a/openwrt/toolchain/libnotimpl/files/math.c b/openwrt/toolchain/libnotimpl/files/math.c index cc8a661ac5..8934197d8d 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 {