home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
GCC
/
GERLIB_DEV08B.LHA
/
gerlib
/
gnulib
/
normal
/
negsf2.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-12
|
283 b
|
19 lines
#include "common.h"
#ifdef IEEE_SINGBAS
#include <inline/mathieeesingbas.h>
#else
#include <inline/mathffp.h>
#include <inline/mathtrans.h>
#endif
SFVALUE
__negsf2 (a)
FLOAT a;
{
#ifdef IEEE_SINGBAS
return IEEESPNeg (a);
#else
return SPTieee( SPNeg( SPFieee(a)));
#endif
}