1/* Public domain.  */
2typedef int HItype __attribute__ ((mode (HI)));
3typedef float SFtype __attribute__ ((mode (SF)));
4
5extern SFtype __floatsisf (unsigned long);
6
7SFtype __floathisf (HItype);
8
9SFtype
10__floathisf (HItype u)
11{
12  return __floatsisf ((unsigned long)u);
13}
14