mirror of
https://github.com/LIV2/libnix.git
synced 2025-12-06 00:23:08 +00:00
7 lines
156 B
C
Executable File
7 lines
156 B
C
Executable File
#include <proto/mathieeesingbas.h>
|
|
|
|
float __floatunsisf(signed long x)
|
|
{ if (x >= 0) return IEEESPFlt(x);
|
|
return IEEESPFlt(x - 0x80000000) + 0x8000000;
|
|
}
|