summaryrefslogtreecommitdiff
path: root/src/math/isinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/isinf.c')
-rw-r--r--src/math/isinf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/isinf.c b/src/math/isinf.c
index 1a6b00ff..be76ecfb 100644
--- a/src/math/isinf.c
+++ b/src/math/isinf.c
@@ -1,6 +1,6 @@
#include <math.h>
-#define isinf(x) (fpclassify(x) == FP_INFINITE)
+#define isinf(__x) (fpclassify(__x) == FP_INFINITE)
/*
STDC(199901)