Added empty function stubs for __fpclassify[fl](); they currently pretend that every number

is a normal one - maybe someone finds the time to implement them for real before I do :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14046 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-08-22 01:34:32 +00:00
parent 67a7102658
commit 61a1551551

View File

@ -92,3 +92,27 @@ __signbitl(long double value)
union { long double v; int i[2]; } u = { v: value };
return (u.i[2] & 0x8000) != 0;
}
int
__fpclassifyf(float value)
{
// TODO: implement me!
return FP_NORMAL;
}
int
__fpclassify(double value)
{
// TODO: implement me!
return FP_NORMAL;
}
int
__fpclassifyl(long double value)
{
// TODO: implement me!
return FP_NORMAL;
}