home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
programm
/
programi
/
gcc_9112.lzh
/
gnulib
/
cmpsf2.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
C/C++ Source or Header
|
1991-10-09
|
290 b
|
19 lines
#include "common.h"
#ifdef IEEE_SINGBAS
#include <inline/mathieeesingbas.h>
#else
#include <inline/mathffp.h>
#include <inline/mathtrans.h>
#endif
int
__cmpsf2 (a, b)
FLOAT a, b;
{
#ifdef IEEE_SINGBAS
return IEEESPCmp (a, b);
#else
return SPCmp( SPFieee(a), SPFieee(b));
#endif
}