2013-09-12 13:52:41 -04:00
|
|
|
/* Public domain. */
|
|
|
|
typedef int HItype __attribute__ ((mode (HI)));
|
|
|
|
typedef unsigned int UHItype __attribute__ ((mode (HI)));
|
|
|
|
typedef float SFtype __attribute__ ((mode (SF)));
|
|
|
|
|
|
|
|
extern SFtype __floatunsisf (unsigned long);
|
|
|
|
|
2016-04-25 11:13:35 +00:00
|
|
|
SFtype __floatunhisf (UHItype);
|
|
|
|
|
2013-09-12 13:52:41 -04:00
|
|
|
SFtype
|
|
|
|
__floatunhisf (UHItype u)
|
|
|
|
{
|
|
|
|
return __floatunsisf ((unsigned long)u);
|
|
|
|
}
|