summaryrefslogtreecommitdiff
path: root/src/math/isnormal.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-06 19:56:37 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-06 19:56:37 -0500
commit85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 (patch)
tree98a5ec2dd988d53370ed4bd8db7af1c133c535fb /src/math/isnormal.c
parent4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff)
prefix arguments with __
Diffstat (limited to 'src/math/isnormal.c')
-rw-r--r--src/math/isnormal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/isnormal.c b/src/math/isnormal.c
index 868c7ea2..95e82b1b 100644
--- a/src/math/isnormal.c
+++ b/src/math/isnormal.c
@@ -1,6 +1,6 @@
#include <math.h>
-#define isnormal(x) (fpclassify(x) == FP_NORMAL)
+#define isnormal(__x) (fpclassify(__x) == FP_NORMAL)
/*
STDC(199901)