diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_sincosf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_sincosf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/ieee754/flt-32/s_sincosf.c b/sysdeps/ieee754/flt-32/s_sincosf.c index 918f6a655a..4fab42d974 100644 --- a/sysdeps/ieee754/flt-32/s_sincosf.c +++ b/sysdeps/ieee754/flt-32/s_sincosf.c @@ -24,6 +24,10 @@ #include "math_config.h" #include "s_sincosf.h" +#ifndef SECTION +# define SECTION +#endif + #ifndef SINCOSF # define SINCOSF_FUNC __sincosf #else @@ -35,6 +39,7 @@ small values. Large inputs have their range reduced using fast integer arithmetic. */ void +SECTION SINCOSF_FUNC (float y, float *sinp, float *cosp) { double x = y; |