fef4 and fef8 did not quite work properly: the exponent part is an
authorceriel <none@none>
Thu, 14 Apr 1988 18:06:47 +0000 (18:06 +0000)
committerceriel <none@none>
Thu, 14 Apr 1988 18:06:47 +0000 (18:06 +0000)
int, not a short!

mach/proto/fp/fef4.c
mach/proto/fp/fef8.c

index 835c8f2..449504c 100644 (file)
@@ -12,7 +12,7 @@
 #include       "FP_types.h"
 
 struct fef4_returns {
-       short   e;
+       int     e;
        _float  f;
 };
 
index ca00b3f..bc95ef7 100644 (file)
@@ -12,7 +12,7 @@
 #include       "FP_types.h"
 
 struct fef8_returns    {
-       short   e;
+       int     e;
        _double f;
 };