Pristine Ack-5.5
[Ack-5.5.git] / mach / proto / fp / zrf_ext.c
1 /*
2   (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3   See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
5
6 /* $Id: zrf_ext.c,v 1.6 1994/06/24 13:33:01 ceriel Exp $ */
7
8 /*
9         ZERO and return EXTEND FORMAT FLOAT
10 */
11
12 #include "FP_types.h"
13
14 void
15 zrf_ext(e)
16 EXTEND  *e;
17 {
18         e->m1 = 0;
19         e->m2 = 0;
20         e->exp = 0;
21         e->sign = 0;
22 }