mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
15 lines
338 B
C
15 lines
338 B
C
/* 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);
|
|
|
|
SFtype __floatunhisf (UHItype);
|
|
|
|
SFtype
|
|
__floatunhisf (UHItype u)
|
|
{
|
|
return __floatunsisf ((unsigned long)u);
|
|
}
|