summaryrefslogtreecommitdiff
path: root/src/math/isinf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-10 12:58:34 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-10 12:58:34 -0500
commit3fe929ecd22b5ca3f5dc35c0c8be523fa7fc1de7 (patch)
treebd482aa8d9ed810e323d679f704e5aaa31f9d105 /src/math/isinf.c
parent6d4678bc82d4a80499123b33a971d2e2c0becb5f (diff)
move nonstd/tgmath.h to ./_tgmath.h
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)