fef4 and fef8 did not quite work properly: the exponent part is an

int, not a short!
This commit is contained in:
ceriel 1988-04-14 18:06:47 +00:00
parent f92dad2d9d
commit 1c7c9c60cf
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
#include "FP_types.h" #include "FP_types.h"
struct fef4_returns { struct fef4_returns {
short e; int e;
_float f; _float f;
}; };

View file

@ -12,7 +12,7 @@
#include "FP_types.h" #include "FP_types.h"
struct fef8_returns { struct fef8_returns {
short e; int e;
_double f; _double f;
}; };