ack/mach/proto/fp/mlf8.c
1988-04-07 11:40:46 +00:00

27 lines
456 B
C

/*
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
/*
* Multiply Single Precesion Float
*/
#include "FP_types.h"
_double
mlf8(s2,s1)
_double s1,s2;
{
EXTEND e1,e2;
extend(&s1,&e1,sizeof(_double));
extend(&s2,&e2,sizeof(_double));
/* do a multiply */
mul_ext(&e1,&e2);
compact(&e1,&s1,sizeof(_double));
return(s1);
}