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:
@@ -92,3 +92,27 @@ __signbitl(long double value)
|
|||||||
union { long double v; int i[2]; } u = { v: value };
|
union { long double v; int i[2]; } u = { v: value };
|
||||||
return (u.i[2] & 0x8000) != 0;
|
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;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user