summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 f4d9e175..5702fc94 100644
--- a/src/math/isnormal.c
+++ b/src/math/isnormal.c
@@ -4,7 +4,7 @@
int __isnormall(long double x);
#define isnormal(x) ((sizeof (x) == sizeof (float)) ? __isnormalf(x) : \
- (sizeof (x) == sizeof (double)) ? __isnormald(x) : __isnormall(x))
+ (sizeof (x) == sizeof (double)) ? __isnormald(x) : __isnormall(x))
/*
STDC(199901)