diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2010-05-10 16:00:22 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2010-05-10 16:00:22 -0700 |
commit | 161232820c715ec12952b859593ea05c458d6916 (patch) | |
tree | a34a964f8ebddc4da652eee037d755f2e069c71a | |
parent | d791da79432064bc954fedf8d4e4394aaafefe75 (diff) | |
parent | fb02ec25e9058af056cfd77f8d071b8be1270642 (diff) | |
download | bionic-161232820c715ec12952b859593ea05c458d6916.zip bionic-161232820c715ec12952b859593ea05c458d6916.tar.gz bionic-161232820c715ec12952b859593ea05c458d6916.tar.bz2 |
Merge "Reversed order of const and static to hush warning from compiler."
-rw-r--r-- | libm/bsdsrc/b_exp.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libm/bsdsrc/b_exp.c b/libm/bsdsrc/b_exp.c index 32873b9..107bc89 100644 --- a/libm/bsdsrc/b_exp.c +++ b/libm/bsdsrc/b_exp.c @@ -76,16 +76,16 @@ static char sccsid[] = "@(#)exp.c 8.1 (Berkeley) 6/4/93"; #include "mathimpl.h" -const static double p1 = 0x1.555555555553ep-3; -const static double p2 = -0x1.6c16c16bebd93p-9; -const static double p3 = 0x1.1566aaf25de2cp-14; -const static double p4 = -0x1.bbd41c5d26bf1p-20; -const static double p5 = 0x1.6376972bea4d0p-25; -const static double ln2hi = 0x1.62e42fee00000p-1; -const static double ln2lo = 0x1.a39ef35793c76p-33; -const static double lnhuge = 0x1.6602b15b7ecf2p9; -const static double lntiny = -0x1.77af8ebeae354p9; -const static double invln2 = 0x1.71547652b82fep0; +static const double p1 = 0x1.555555555553ep-3; +static const double p2 = -0x1.6c16c16bebd93p-9; +static const double p3 = 0x1.1566aaf25de2cp-14; +static const double p4 = -0x1.bbd41c5d26bf1p-20; +static const double p5 = 0x1.6376972bea4d0p-25; +static const double ln2hi = 0x1.62e42fee00000p-1; +static const double ln2lo = 0x1.a39ef35793c76p-33; +static const double lnhuge = 0x1.6602b15b7ecf2p9; +static const double lntiny = -0x1.77af8ebeae354p9; +static const double invln2 = 0x1.71547652b82fep0; #if 0 double exp(x) |