xref: /netbsd-src/lib/libc/arch/m68k/gen/fpfake.c (revision daf6c4152fcddc27c445489775ed1f66ab4ea9a9)
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 }
38