b6cbf7203b
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.
37 lines
304 B
C
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;
|
|
}
|