mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
9 lines
120 B
C
9 lines
120 B
C
/* Public domain. */
|
|
extern double __floatsidf (long);
|
|
|
|
double
|
|
__floathidf (int u)
|
|
{
|
|
return __floatsidf ((long)u);
|
|
}
|