summaryrefslogtreecommitdiff
path: root/src/math/isnan.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/isnan.c')
-rw-r--r--src/math/isnan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/isnan.c b/src/math/isnan.c
index 472bc4b8..963b7021 100644
--- a/src/math/isnan.c
+++ b/src/math/isnan.c
@@ -4,7 +4,7 @@
int __isnanl(long double x);
#define isnan(x) ((sizeof (x) == sizeof (float)) ? __isnanf(x) : \
- (sizeof (x) == sizeof (double)) ? __isnand(x) : __isnanl(x))
+ (sizeof (x) == sizeof (double)) ? __isnand(x) : __isnanl(x))
/*
STDC(199901)