diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-64-128/s_isinfl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-64-128/s_isinfl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-64-128/s_isinfl.c b/sysdeps/ieee754/ldbl-64-128/s_isinfl.c index e046032b09..6dab0e9223 100644 --- a/sysdeps/ieee754/ldbl-64-128/s_isinfl.c +++ b/sysdeps/ieee754/ldbl-64-128/s_isinfl.c @@ -1,5 +1,5 @@ #include <math_ldbl_opt.h> -#ifndef IS_IN_libm +#if !IS_IN (libm) # undef weak_alias # define weak_alias(n,a) # undef hidden_def @@ -7,7 +7,7 @@ # define __isinfl(arg) ___isinfl(arg) #endif #include <sysdeps/ieee754/ldbl-128/s_isinfl.c> -#ifndef IS_IN_libm +#if !IS_IN (libm) # undef __isinfl hidden_ver (___isinfl, __isinfl) _weak_alias (___isinfl, ____isinfl) |