summaryrefslogtreecommitdiff
path: root/emfloat.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-15 02:19:34 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-15 02:19:34 +0000
commit332747f6df0cd2af6535d81ccde00ade374563fa (patch)
tree67ec63e56bdd6220146e0d42d676fcb165999f09 /emfloat.h
parent27b6cc8fd26d7d3f31308a4137436e4f455c0daf (diff)
Clean out fpemulation struct. Replace members with local static variables
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@48 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'emfloat.h')
-rw-r--r--emfloat.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/emfloat.h b/emfloat.h
index 8290da8..3c453b6 100644
--- a/emfloat.h
+++ b/emfloat.h
@@ -73,15 +73,7 @@
#define OPERAND_INFINITY 3
#define OPERAND_NAN 4
-/*
-** Following already defined in NMGLOBAL.H
-**
#define INTERNAL_FPF_PRECISION 4
-*/
-
-/*
-** TYPEDEFS
-*/
typedef struct
{
@@ -91,9 +83,6 @@ typedef struct
uint16_t mantissa[INTERNAL_FPF_PRECISION];
} InternalFPF;
-/*
-** PROTOTYPES
-*/
void AddSubInternalFPF(unsigned char operation,InternalFPF *x, InternalFPF *y, InternalFPF *z);
void MultiplyInternalFPF(InternalFPF *x,InternalFPF *y, InternalFPF *z);
void DivideInternalFPF(InternalFPF *x,InternalFPF *y, InternalFPF *z);