mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
12 lines
240 B
C
12 lines
240 B
C
|
/* Public domain. */
|
||
|
typedef int HItype __attribute__ ((mode (HI)));
|
||
|
typedef float SFtype __attribute__ ((mode (SF)));
|
||
|
|
||
|
extern SFtype __floatsisf (unsigned long);
|
||
|
|
||
|
SFtype
|
||
|
__floathisf (HItype u)
|
||
|
{
|
||
|
return __floatsisf ((unsigned long)u);
|
||
|
}
|