[BACK]Return to fpfake.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / arch / m68k / gen

File: [cvs.NetBSD.org] / src / lib / libc / arch / m68k / gen / fpfake.c (download)

Revision 1.1, Sat Nov 28 23:46:38 2009 UTC (14 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-premerge-20091211, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, matt-mips64-premerge-20101231, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache

Add no/op routines for m68000 for the sticky, mask, and round settings.

#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;
}