From 7f8d0be06f7a03917b69b601a3703ca63208f0a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Wed, 8 Aug 2007 09:14:38 +0000 Subject: [PATCH] * fix ticket #1365, isinf(x) -> isinf(value) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21849 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))