Matt Ritchie - 2003-07-01

Well, I started thinking why not integrate the two projects and just use a header that determines whether to use floating point support or not
cut here
------------------------------------------------

#ifndef _NUMTYPE_H
#define _NUMTYPE_H
#ifdef _NO_FPU
typedef int num;
type lomg bnum;
#else
typedef float num;
typedef double bnum;
#endif // _NO_FPU
#endif // _NUMTYPE_H
------------------------------------------------
Matt Ritchie