2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
6 #include <libraries/mathieeesp.h>
7 #include <aros/libcall.h>
8 #include <proto/mathieeesingbas.h>
9 #include <proto/mathieeesingtrans.h>
10 #include <proto/exec.h>
11 #include <exec/types.h>
12 #include "mathieeesingtrans_intern.h"
14 LONG
intern_IEEESPisodd(LONG fnum
)
16 LONG Exponent
= ((fnum
& IEEESPExponent_Mask
) >> 23) - 0x7f;
17 LONG Mask
= (0x00800000 >> Exponent
);
19 if ((fnum
& Mask
) != 0) return TRUE
;
21 } /* intern_IEEESPisodd */