mirror of
https://github.com/outbackdingo/openwrt.git
synced 2026-02-23 02:50:27 +00:00
fix typo and wrong func call in rint()
SVN-Revision: 3707
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
#ifdef __STDC__
|
||||
float ceilf(float x)
|
||||
#else
|
||||
float rintf(x)
|
||||
float ceilf(x)
|
||||
float x;
|
||||
#endif
|
||||
{
|
||||
@@ -63,6 +63,6 @@
|
||||
float x;
|
||||
#endif
|
||||
{
|
||||
return (float) sin( (double)x );
|
||||
return (float) rint( (double)x );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user