diff --git a/headers/posix/math.h b/headers/posix/math.h index 5145b350f4..50f677790d 100644 --- a/headers/posix/math.h +++ b/headers/posix/math.h @@ -251,7 +251,7 @@ extern int __isinf(double value); : __isnanl(value)) /* returns non-zero if 'value is Inf */ -# define isinf(x) \ +# define isinf(value) \ (sizeof(value) == sizeof(float) ? __isinff(value) \ : sizeof(value) == sizeof(double) ? __isinf(value) \ : __isinfl(value))