1
0
mirror of git://git.musl-libc.org/musl synced 2025-01-14 02:41:26 +00:00

fenv: return FE_TONEAREST in dummy fegetround

This commit is contained in:
Szabolcs Nagy 2012-11-14 09:27:54 +01:00
parent 45ff9d8eb6
commit 68847ecd3a

View File

@ -19,7 +19,7 @@ int fetestexcept(int mask)
int fegetround(void)
{
return 0;
return FE_TONEAREST;
}
int fesetround(int r)