summaryrefslogtreecommitdiff
path: root/plan9/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'plan9/math.h')
-rw-r--r--plan9/math.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/plan9/math.h b/plan9/math.h
new file mode 100644
index 0000000000..fc0d725d59
--- /dev/null
+++ b/plan9/math.h
@@ -0,0 +1,12 @@
+/* Our math.h for HAS_FPCLASSIFY in plan9.config
+ * FP_NORMAL Normalized
+ * FP_ZERO Zero
+ * FP_INFINITE Infinity
+ * FP_SUBNORMAL Denormalized
+ * FP_NAN NaN
+ */
+#define FP_NORMAL 1
+#define FP_ZERO 2
+#define FP_INFINITE 3
+#define FP_SUBNORMAL 4
+#define FP_NAN 5