summaryrefslogtreecommitdiff
path: root/lib/fp_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fp_lib.h')
-rw-r--r--lib/fp_lib.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/fp_lib.h b/lib/fp_lib.h
index 2333c8ae..6c9455ac 100644
--- a/lib/fp_lib.h
+++ b/lib/fp_lib.h
@@ -25,20 +25,6 @@
#include <stdbool.h>
#include <limits.h>
-// Result enumerations used in comparison routines.
-enum LE_RESULT {
- LE_LESS = -1,
- LE_EQUAL = 0,
- LE_GREATER = 1,
- LE_UNORDERED = 1
-};
-enum GE_RESULT {
- GE_LESS = -1,
- GE_EQUAL = 0,
- GE_GREATER = 1,
- GE_UNORDERED = -1 // Note: different from LE_UNORDERED
-};
-
#if defined SINGLE_PRECISION
typedef uint32_t rep_t;