repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
forget difference between big and small commands - obsolete with vm.
[minix.git]
/
lib
/
ack
/
fphook
/
zrf_ext.fc
blob
8f5878989ca7f4d918e7a8841ee3f8fc1da97db4
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
/* $Header$ */
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
}