fix loads of missing const in new libm, and some global vars (?!) in powl
[oweals/musl.git] / src / math / expl.c
index 898cf1a54ee5380026dc6e9470612ff13ea73001..9507fd2e32f1b3779f35675b597ba510d5be4928 100644 (file)
@@ -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,