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