repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
lib
/
libc
/
arch
/
m68k
/
gen
/
fpfake.c
blob
6911f0173b231819b97cb887bdedc6fd26abd2da
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
/* ARGSUSED */
22
fp_except
23
fpsetmask
(
fp_except mask
)
24
{
25
return
0
;
26
}
27
28
/* ARGSUSED */
29
fp_rnd
30
fpsetround
(
fp_rnd rnd_dir
)
31
{
32
return
0
;
33
}
34
35
/* ARGSUSED */
36
fp_except
37
fpsetsticky
(
fp_except sticky
)
38
{
39
return
0
;
40
}