diff options
author | Damien George <damien.p.george@gmail.com> | 2016-06-25 22:30:40 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-06-25 22:30:40 +0100 |
commit | 7ddd85f933f18deff49bc6af520d4dc8d7be6282 (patch) | |
tree | 35a322242d0a25cd5d5af646fcfdf5bfe67f2ae0 /lib | |
parent | 873853f1a8fcc124959685daf2d210da035794c5 (diff) | |
download | micropython-7ddd85f933f18deff49bc6af520d4dc8d7be6282.tar.gz micropython-7ddd85f933f18deff49bc6af520d4dc8d7be6282.zip |
lib/libm: Remove unused definition of "one".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libm/sf_cos.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libm/sf_cos.c b/lib/libm/sf_cos.c index 5776ef46bb..33cde50e28 100644 --- a/lib/libm/sf_cos.c +++ b/lib/libm/sf_cos.c @@ -25,12 +25,6 @@ #include "fdlibm.h" #ifdef __STDC__ -static const float one=1.0; -#else -static float one=1.0; -#endif - -#ifdef __STDC__ float cosf(float x) #else float cosf(x) |