diff options
Diffstat (limited to 'math/w_fmodf_compat.c')
-rw-r--r-- | math/w_fmodf_compat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/math/w_fmodf_compat.c b/math/w_fmodf_compat.c index 88b64a24bd..a2739d856a 100644 --- a/math/w_fmodf_compat.c +++ b/math/w_fmodf_compat.c @@ -20,6 +20,7 @@ #include <math_private.h> #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT /* wrapper fmodf */ float __fmodf (float x, float y) @@ -32,3 +33,4 @@ __fmodf (float x, float y) return __ieee754_fmodf (x, y); } weak_alias (__fmodf, fmodf) +#endif |