diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-18 01:58:28 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-18 01:58:28 -0400 |
commit | 9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34 (patch) | |
tree | ed1d3bc96b974c3a19a808d15cae7386f8cf27d1 /src/math/expl.c | |
parent | 8e092217dd92ad3e95257255602c711b3304e38f (diff) | |
download | musl-9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34.tar.gz musl-9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34.tar.xz musl-9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34.zip |
fix loads of missing const in new libm, and some global vars (?!) in powl
Diffstat (limited to 'src/math/expl.c')
-rw-r--r-- | src/math/expl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/expl.c b/src/math/expl.c index 898cf1a5..9507fd2e 100644 --- a/src/math/expl.c +++ b/src/math/expl.c @@ -74,12 +74,12 @@ long double expl(long double x) } #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 -static long double P[3] = { +static const long double P[3] = { 1.2617719307481059087798E-4L, 3.0299440770744196129956E-2L, 9.9999999999999999991025E-1L, }; -static long double Q[4] = { +static const long double Q[4] = { 3.0019850513866445504159E-6L, 2.5244834034968410419224E-3L, 2.2726554820815502876593E-1L, |