minix/lib/nbsd_libc/arch/m68k/gen/fpfake.c
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

37 lines
304 B
C

#include <ieeefp.h>
fp_except
fpgetmask(void)
{
return 0;
}
fp_rnd
fpgetround(void)
{
return 0;
}
fp_except
fpgetsticky(void)
{
return 0;
}
fp_except
fpsetmask(fp_except mask)
{
return 0;
}
fp_rnd
fpsetround(fp_rnd rnd_dir)
{
return 0;
}
fp_except
fpsetsticky(fp_except sticky)
{
return 0;
}