use float instead of double for basic FP type

This commit is contained in:
Josh Coalson 2001-05-16 19:28:54 +00:00
parent 5157f7c1c3
commit 7e40e6dad9

View File

@ -78,6 +78,6 @@ typedef long long int int64;
typedef unsigned long long uint64;
#endif
typedef uint8 byte;
typedef double real;
typedef float real;
#endif