diff options
Diffstat (limited to 'math/w_remainderf_compat.c')
-rw-r--r-- | math/w_remainderf_compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_remainderf_compat.c b/math/w_remainderf_compat.c index 39ff3b4468..bd2719c4b6 100644 --- a/math/w_remainderf_compat.c +++ b/math/w_remainderf_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 @@ -33,6 +34,6 @@ __remainderf (float x, float y) return __ieee754_remainderf (x, y); } -weak_alias (__remainderf, remainderf) +libm_alias_float (__remainder, remainder) weak_alias (__remainderf, dremf) #endif |