minix/lib/libc/arch/m68k/gen/fpfake.c
Lionel Sambuc e415d48872 Libc update to simplify merge.
Bumping libc files for unsupported architectures, to simplify merging.
A bunch of small fixes:
 * in libutil update
 * the macro in endian.h
 * some undefined types due to clear separation from host.
 * Fix a warning for cdbr.c

Some modification which were required for the new build system:
 * inclusion path for const.h in sconst, still hacky
 * Removed default malloc.c which conflicts on some occasions.
2012-11-15 16:07:29 +01:00

41 lines
349 B
C

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