From: ceriel Date: Thu, 14 Apr 1988 18:06:47 +0000 (+0000) Subject: fef4 and fef8 did not quite work properly: the exponent part is an X-Git-Tag: release-5-5~3434 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1c7c9c60cf4161b8cc919a7291896d842aef049f;p=ack.git fef4 and fef8 did not quite work properly: the exponent part is an int, not a short! --- diff --git a/mach/proto/fp/fef4.c b/mach/proto/fp/fef4.c index 835c8f2fc..449504ca8 100644 --- a/mach/proto/fp/fef4.c +++ b/mach/proto/fp/fef4.c @@ -12,7 +12,7 @@ #include "FP_types.h" struct fef4_returns { - short e; + int e; _float f; }; diff --git a/mach/proto/fp/fef8.c b/mach/proto/fp/fef8.c index ca00b3fe5..bc95ef721 100644 --- a/mach/proto/fp/fef8.c +++ b/mach/proto/fp/fef8.c @@ -12,7 +12,7 @@ #include "FP_types.h" struct fef8_returns { - short e; + int e; _double f; };