summaryrefslogtreecommitdiff
path: root/ghc/lib/std/cbits/floatExtreme.h
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/lib/std/cbits/floatExtreme.h')
-rw-r--r--ghc/lib/std/cbits/floatExtreme.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/ghc/lib/std/cbits/floatExtreme.h b/ghc/lib/std/cbits/floatExtreme.h
new file mode 100644
index 0000000000..e073985706
--- /dev/null
+++ b/ghc/lib/std/cbits/floatExtreme.h
@@ -0,0 +1,13 @@
+#ifndef FLOATEXTREME_H
+#define FLOATEXTREME_H
+
+StgInt isDoubleNaN PROTO((StgDouble));
+StgInt isDoubleInfinite PROTO((StgDouble));
+StgInt isDoubleDenormalized PROTO((StgDouble));
+StgInt isDoubleNegativeZero PROTO((StgDouble));
+StgInt isFloatNaN PROTO((StgFloat));
+StgInt isFloatInfinite PROTO((StgFloat));
+StgInt isFloatDenormalized PROTO((StgFloat));
+StgInt isFloatNegativeZero PROTO((StgFloat));
+
+#endif /* FLOATEXTREME_H */