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