added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / arch / .unmaintained / m68k-native / clib / __fixunssfsi.c
blobf800af14e50527e63b2fecdfe63603a7732f3d43
1 /* $Id$
3 * Code taken from libnix
4 */
6 unsigned long __fixunssfsi(float x)
7 { if(x<0)
8 return 0;
9 if(x>=0x80000000u)
10 return (signed long)(x-0x80000000u)+0x80000000u;
11 return (signed long)x;