mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-20 09:44:44 +02:00
add rintf wrapper to libnotimpl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2190 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
0206267d8c
commit
1f675b0532
@ -1,16 +1,16 @@
|
|||||||
/* vi: set sw=4 ts=4: */
|
/* vi: set sw=4 ts=4: */
|
||||||
|
|
||||||
|
#include "math.h"
|
||||||
|
|
||||||
/* cosf for uClibc
|
/* cosf for uClibc
|
||||||
*
|
*
|
||||||
* wrapper for cos(x)
|
* wrapper for cos(x)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "math.h"
|
|
||||||
|
|
||||||
#ifdef __STDC__
|
#ifdef __STDC__
|
||||||
float cosf(float x) /* wrapper cos */
|
float cosf(float x)
|
||||||
#else
|
#else
|
||||||
float cosf(x) /* wrapper cos */
|
float cosf(x)
|
||||||
float x;
|
float x;
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
@ -22,12 +22,25 @@
|
|||||||
* wrapper for sin(x)
|
* wrapper for sin(x)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "math.h"
|
|
||||||
|
|
||||||
#ifdef __STDC__
|
#ifdef __STDC__
|
||||||
float sinf(float x) /* wrapper sin */
|
float sinf(float x)
|
||||||
#else
|
#else
|
||||||
float sinf(x) /* wrapper sin */
|
float sinf(x)
|
||||||
|
float x;
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
return (float) sin( (double)x );
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rintf for uClibc
|
||||||
|
*
|
||||||
|
* wrapper for rint(x)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __STDC__
|
||||||
|
float rintf(float x)
|
||||||
|
#else
|
||||||
|
float rintf(x)
|
||||||
float x;
|
float x;
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user