projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix typo and wrong func call in rint()
[openwrt.git]
/
openwrt
/
toolchain
/
libnotimpl
/
files
/
math.c
diff --git
a/openwrt/toolchain/libnotimpl/files/math.c
b/openwrt/toolchain/libnotimpl/files/math.c
index
a16ea74
..
7333a36
100644
(file)
--- a/
openwrt/toolchain/libnotimpl/files/math.c
+++ b/
openwrt/toolchain/libnotimpl/files/math.c
@@
-43,7
+43,7
@@
#ifdef __STDC__
float ceilf(float x)
#else
- float
rint
f(x)
+ float
ceil
f(x)
float x;
#endif
{
@@
-63,6
+63,6
@@
float x;
#endif
{
- return (float)
sin
( (double)x );
+ return (float)
rint
( (double)x );
}
This page took
0.020558 seconds
and
4
git commands to generate.