diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-10-07 09:59:42 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-10-07 09:59:42 +0000 |
commit | e9dd9d22e76b2a8e593ef069870abf6ac13bb137 (patch) | |
tree | 00080008f23db089d2602c13146cf68b6ced0e93 | |
parent | f24a3a5199d7cce7aec687b0491282f0599f0340 (diff) | |
download | mtk-20170518-e9dd9d22e76b2a8e593ef069870abf6ac13bb137.zip mtk-20170518-e9dd9d22e76b2a8e593ef069870abf6ac13bb137.tar.gz mtk-20170518-e9dd9d22e76b2a8e593ef069870abf6ac13bb137.tar.bz2 |
fix typo
SVN-Revision: 4941
-rw-r--r-- | openwrt/toolchain/libnotimpl/src/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/toolchain/libnotimpl/src/math.c b/openwrt/toolchain/libnotimpl/src/math.c index a16ea74..5bfcb95 100644 --- a/openwrt/toolchain/libnotimpl/src/math.c +++ b/openwrt/toolchain/libnotimpl/src/math.c @@ -43,7 +43,7 @@ #ifdef __STDC__ float ceilf(float x) #else - float rintf(x) + float ceilf(x) float x; #endif { |