diff options
author | Steve Kargl <kargl@FreeBSD.org> | 2015-03-01 20:32:47 +0000 |
---|---|---|
committer | Steve Kargl <kargl@FreeBSD.org> | 2015-03-01 20:32:47 +0000 |
commit | a737ef56ab3eb980f15326ed09b11a96b7c20f1c (patch) | |
tree | e051774483345261ce3f4fa5cc66bc031971c715 /lib/msun/src/e_j1f.c | |
parent | db37238f701ac820e23c41e69fb9a34ae0e0f739 (diff) |
Notes
Diffstat (limited to 'lib/msun/src/e_j1f.c')
-rw-r--r-- | lib/msun/src/e_j1f.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/msun/src/e_j1f.c b/lib/msun/src/e_j1f.c index 965480bfea128..6077a6924d391 100644 --- a/lib/msun/src/e_j1f.c +++ b/lib/msun/src/e_j1f.c @@ -219,7 +219,8 @@ static const float ps2[5] = { 8.3646392822e+00, /* 0x4105d590 */ }; - static float ponef(float x) +static __inline float +ponef(float x) { const float *p,*q; float z,r,s; @@ -315,7 +316,8 @@ static const float qs2[6] = { -4.9594988823e+00, /* 0xc09eb437 */ }; - static float qonef(float x) +static __inline float +qonef(float x) { const float *p,*q; float s,r,z; |