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 031d870a..9139197f 100644
--- a/src/math/isinf.c
+++ b/src/math/isinf.c
@@ -4,7 +4,7 @@
int __isinfl(long double x);
#define isinf(x) ((sizeof (x) == sizeof (float)) ? __isinff(x) : \
- (sizeof (x) == sizeof (double)) ? __isinfd(x) : __isinfl(x))
+ (sizeof (x) == sizeof (double)) ? __isinfd(x) : __isinfl(x))
/*
STDC(199901)