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/expf.c | |
parent | 8e092217dd92ad3e95257255602c711b3304e38f (diff) | |
download | musl-9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34.tar.gz musl-9e2a895aaaa4a3985e94ae4f3e24c1af65f9bb34.tar.bz2 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/expf.c')
-rw-r--r-- | src/math/expf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/expf.c b/src/math/expf.c index 8925a6f1..f706ac5d 100644 --- a/src/math/expf.c +++ b/src/math/expf.c @@ -33,7 +33,7 @@ invln2 = 1.4426950216e+00, /* 0x3fb8aa3b */ P1 = 1.6666625440e-1, /* 0xaaaa8f.0p-26 */ P2 = -2.7667332906e-3; /* -0xb55215.0p-32 */ -static volatile float twom100 = 7.8886090522e-31; /* 2**-100=0x0d800000 */ +static const volatile float twom100 = 7.8886090522e-31; /* 2**-100=0x0d800000 */ float expf(float x) { |