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
vm: fix a null dereference on out-of-memory
[minix.git]
/
lib
/
libc
/
arch
/
m68k
/
gen
/
fpfake.c
blob
b2835d4add496181256a57b09f8cb4f914957550
1
#include <ieeefp.h>
2
3
fp_except
4
fpgetmask
(
void
)
5
{
6
return
0
;
7
}
8
9
fp_rnd
10
fpgetround
(
void
)
11
{
12
return
0
;
13
}
14
15
fp_except
16
fpgetsticky
(
void
)
17
{
18
return
0
;
19
}
20
21
fp_except
22
fpsetmask
(
fp_except mask
)
23
{
24
return
0
;
25
}
26
27
fp_rnd
28
fpsetround
(
fp_rnd rnd_dir
)
29
{
30
return
0
;
31
}
32
33
fp_except
34
fpsetsticky
(
fp_except sticky
)
35
{
36
return
0
;
37
}