home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 9
/
FreshFishVol9-CD2.bin
/
bbs
/
gnu
/
libnix-0.8-src.lha
/
libnix-0.8
/
sources
/
nix
/
math
/
__fixunssfsi.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-12-12
|
161 b
|
8 lines
unsigned long __fixunssfsi(float x)
{ if(x<0)
return 0;
if(x>=0x80000000u)
return (signed long)(x-0x80000000u)+0x80000000u;
return (signed long)x;
}