extern void Float_Round(int *, int *);
extern int Float_Sqrt(int *);
int Float_ToInt2(int x)
{
  int buf[5];
  buf[4] = x;
  Float_Round(&buf[4], buf);
  buf[1] = (buf[1] == 0);
  return Float_Sqrt(buf);
}
