diff options
Diffstat (limited to 'lib/msun/src/k_cosf.c')
-rw-r--r-- | lib/msun/src/k_cosf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/msun/src/k_cosf.c b/lib/msun/src/k_cosf.c index 885af94..4e04fd8 100644 --- a/lib/msun/src/k_cosf.c +++ b/lib/msun/src/k_cosf.c @@ -14,9 +14,11 @@ * ==================================================== */ +#ifndef INLINE_KERNEL_COSF #ifndef lint static char rcsid[] = "$FreeBSD$"; #endif +#endif #include "math.h" #include "math_private.h" @@ -28,6 +30,9 @@ C1 = 0xaaaaa5.0p-28, /* 0.041666645557 */ C2 = -0xb60615.0p-33, /* -0.0013887310633 */ C3 = 0xccf47d.0p-39; /* 0.000024432542887 */ +#ifdef INLINE_KERNEL_COSF +extern inline +#endif float __kernel_cosf(float x, float y) { |